/* /Components/Alert.razor.rz.scp.css */
.alert-message[b-ud1cni4h0f] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #336;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeout-b-ud1cni4h0f 2s ease forwards;
    animation-delay: 4s;
    opacity: 0.8;
}

@keyframes fadeout-b-ud1cni4h0f {
    from {
        opacity: 0.8;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
/* /Components/Collapsible.razor.rz.scp.css */
.collapsible[b-j2cw3r73mj] {
  width: 100%;
}

.collapsible-toggle[b-j2cw3r73mj] {
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: inherit;
  text-align: left;
  transition: opacity 0.2s ease;
  color: #fff;
}

.collapsible-toggle:hover[b-j2cw3r73mj] {
  opacity: 0.8;
}

.collapsible-header[b-j2cw3r73mj] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collapsible-icon[b-j2cw3r73mj] {
  display: inline-flex;
  font-size: 0.875em;
  transition: transform 0.3s ease;
  margin-top: 0.7rem;
}

.collapsible-toggle[aria-expanded="true"] .collapsible-icon[b-j2cw3r73mj] {
  transform: rotate(180deg);
}

.collapsible-content[b-j2cw3r73mj] {
  overflow: hidden;
  transition: height 0.3s ease;
}

.collapsible-content[hidden][b-j2cw3r73mj] {
  display: block;
  height: 0;
}

/* /Components/Loading.razor.rz.scp.css */
#pageloading[b-09kscru29e] {display:none;}

.loader-line[b-09kscru29e] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    overflow: hidden;
    background-color: #184066;
    z-index: 1001;
}

.loader-line[b-09kscru29e]:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 5px;
    width: 40%;
    background-color: #3498db;
    -webkit-animation: lineAnim 2s linear infinite;
    -moz-animation: lineAnim 2s linear infinite;
    animation: lineAnim-b-09kscru29e 2s linear infinite;
}

@keyframes lineAnim-b-09kscru29e {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}
/* /Components/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-e6y2z7yq9g],
.components-reconnect-repeated-attempt-visible[b-e6y2z7yq9g],
.components-reconnect-failed-visible[b-e6y2z7yq9g],
.components-pause-visible[b-e6y2z7yq9g],
.components-resume-failed-visible[b-e6y2z7yq9g],
.components-rejoining-animation[b-e6y2z7yq9g] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-retrying[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-failed[b-e6y2z7yq9g],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-e6y2z7yq9g] {
    display: block;
}


#components-reconnect-modal[b-e6y2z7yq9g] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-e6y2z7yq9g 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-e6y2z7yq9g 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-e6y2z7yq9g 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-e6y2z7yq9g]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-e6y2z7yq9g 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-e6y2z7yq9g {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-e6y2z7yq9g {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-e6y2z7yq9g {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-e6y2z7yq9g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-e6y2z7yq9g] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-e6y2z7yq9g] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-e6y2z7yq9g] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-e6y2z7yq9g] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-e6y2z7yq9g] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-e6y2z7yq9g] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-e6y2z7yq9g 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-e6y2z7yq9g] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-e6y2z7yq9g {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Pages/About.razor.rz.scp.css */
section.hero div[b-nsrh0zuqqa] {
    margin-bottom: 0;
}
/* /Pages/CopilotNews/Freebies.razor.rz.scp.css */
section.freebies[b-cde0gufbna] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 100%;
}

section.freebies .item[b-cde0gufbna] {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    box-sizing: border-box;

    .disabled {
        color:#ccc;
        font-size: 0.9rem;

        .button {
            margin-right: 10px;
            background:#333;
            opacity: 0.5;
            border-color:#333;
            cursor:not-allowed;
            text-decoration: line-through;
        }
    }

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;[b-cde0gufbna]
    }
}


section.freebies .item-image[b-cde0gufbna] {
    flex: 0 0 32%;
    max-width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;

    @media (max-width: 768px) {
        flex: 1;
        max-width: 100%;[b-cde0gufbna]
    }
}

section.freebies .item-image img[b-cde0gufbna] {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

section.freebies .item-content[b-cde0gufbna] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

section.freebies .item-content h3[b-cde0gufbna] {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-weight: 600;
}

section.freebies .item-content p[b-cde0gufbna] {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
}

section.freebies .item-content p:last-child[b-cde0gufbna] {
    margin-top: 1rem;
}


/* /Pages/CopilotNews/Index.razor.rz.scp.css */
div.news-container[b-y0yc9hgfnp] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    box-sizing: border-box;
    min-width: 0;

    @media (max-width: 900px) {
        flex-direction: column;
        gap: 1rem;[b-y0yc9hgfnp]
    }
}

div.news-container > div.info[b-y0yc9hgfnp] {
    flex: 1;
    min-width: 0;
    
    h1 {font-size:2rem;}
    h1 small[b-y0yc9hgfnp] {font-size:1.2rem; display:block;}
    h2[b-y0yc9hgfnp] { font-size: 1.4rem; padding-bottom: 0.5rem;}

    @media (max-width: 900px) {
        width: 100%;[b-y0yc9hgfnp]
    }
}

section.form[b-y0yc9hgfnp] {
    flex: 0 0 45%;
    display: block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    min-width: 0;

    @media (max-width: 900px) {
        flex: 1;[b-y0yc9hgfnp]
    }

    @media (max-width: 768px) {
        flex: 1;
        padding: 1.5rem;[b-y0yc9hgfnp]
    }
}
/* /Pages/CopilotNews/Landing.razor.rz.scp.css */
div.news-container[b-ank3n1seun] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;

    @media (max-width: 900px) {
        flex-direction: column;
        gap: 1rem;[b-ank3n1seun]
    }
}

div.news-container > div.info[b-ank3n1seun] {
    padding-top: 1rem;
    flex: 1;
    min-width: 0;
    
    h1 {font-size:2rem;}
    h1 small[b-ank3n1seun] {font-size:1.2rem; display:block;}
    h2[b-ank3n1seun] { font-size: 1.4rem; padding-bottom: 0.5rem;}

    @media (max-width: 900px) {
        width: 100%;[b-ank3n1seun]
    }
}

section.form[b-ank3n1seun] {
    flex: 0 0 40%;
    display: block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    
    button {margin-right: 10px;}

    @media (max-width: 900px) {
        flex: 1;
        width: 100%;[b-ank3n1seun]
    }

    @media (max-width: 768px) {
        max-width: 100%;
        padding: 1.5rem;[b-ank3n1seun]
    }

}

form div:nth-of-type(1)[b-ank3n1seun] { width: 90%; }
form div:nth-of-type(2)[b-ank3n1seun] { width: 70%; }

@media only screen and (max-width: 520px) {
    form div:nth-of-type(1)[b-ank3n1seun] { width: 100%; }
    form div:nth-of-type(2)[b-ank3n1seun] { width: 100%; }
}

form div.message[b-ank3n1seun] {display: block; width:auto;}
form .subscription h2[b-ank3n1seun] {color:goldenrod;}
form .subscription p[b-ank3n1seun] {margin-top: 1rem;}
form .subscription small[b-ank3n1seun] {font-size: 0.8rem;}


.landing-transition[b-ank3n1seun] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 3rem 1.5rem;
    background: linear-gradient(180deg, rgba(24, 156, 240, 0.05), rgba(24, 156, 240, 0.02));
    border-top: 1px solid rgba(24, 156, 240, 0.2);
    border-bottom: 1px solid rgba(24, 156, 240, 0.2);
    margin: 0 0 2rem 0;
}

.transition-arrow[b-ank3n1seun] {
    font-size: 2rem;
    color: #189CF0;
    animation: bounce-b-ank3n1seun 2s infinite;
    margin-bottom: 1rem;
}

@keyframes bounce-b-ank3n1seun {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.transition-text[b-ank3n1seun] {
    font-size: 1.1rem;
    color: #ddd;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

.transition-text strong[b-ank3n1seun] {
    color: #189CF0;
    font-weight: 600;
}

@media (max-width: 600px) {
    .landing-transition[b-ank3n1seun] {
        padding: 2rem 1rem;
    }

    .transition-arrow[b-ank3n1seun] {
        font-size: 1.5rem;
    }

    .transition-text[b-ank3n1seun] {
        font-size: 1rem;
    }
}

/* /Pages/CopilotNews/Landings/PowerPromptPack.razor.rz.scp.css */
.landing-hero[b-qayfia1kqe] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 0;
    padding-bottom: 1rem;
}

@media (max-width: 900px) {
    .landing-hero[b-qayfia1kqe] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.landing-content[b-qayfia1kqe] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.landing-content p:last-of-type[b-qayfia1kqe]{margin:0;}

.landing-tagline[b-qayfia1kqe] {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
    margin-top: 0;
}

.landing-benefits[b-qayfia1kqe] {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.benefit-item[b-qayfia1kqe] {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.benefit-item i[b-qayfia1kqe] {
    color: #189CF0;
}

.landing-visual[b-qayfia1kqe] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.prompt-preview[b-qayfia1kqe] {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
}

@media (max-width: 600px) {
    .prompt-preview[b-qayfia1kqe] {
        grid-template-columns: 1fr;
    }
}

.prompt-card[b-qayfia1kqe] {
    background: linear-gradient(135deg, rgba(24, 156, 240, 0.1), rgba(15, 122, 193, 0.05));
    border: 1px solid rgba(24, 156, 240, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
}

.prompt-card[b-qayfia1kqe]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #189CF0, #0F7AC1);
}

.prompt-card:hover[b-qayfia1kqe] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 156, 240, 0.2);
    border-color: rgba(24, 156, 240, 0.5);
}

.prompt-number[b-qayfia1kqe] {
    font-size: 0.75rem;
    color: #189CF0;
    font-weight: bold;
    opacity: 0.7;
    min-width: 1.5rem;
}

.prompt-card strong[b-qayfia1kqe] {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.3;
    font-weight: normal;
}
/* /Pages/CopilotNews/Landings/PrednaskaNovinky.razor.rz.scp.css */
.landing-hero[b-0dt1odeil5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 0;
    padding-bottom: 1rem;
}

@media (max-width: 900px) {
    .landing-hero[b-0dt1odeil5] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.landing-content[b-0dt1odeil5] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.landing-content p:last-of-type[b-0dt1odeil5] {
    margin: 0;
}

.landing-tagline[b-0dt1odeil5] {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
    margin-top: 0;
}

.landing-benefits[b-0dt1odeil5] {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.benefit-item[b-0dt1odeil5] {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.benefit-item i[b-0dt1odeil5] {
    color: #189CF0;
}

.landing-visual[b-0dt1odeil5] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    
    div {margin-bottom: auto;}
}

.talk-preview[b-0dt1odeil5] {
    background: linear-gradient(135deg, rgba(24, 156, 240, 0.08), rgba(15, 122, 193, 0.05));
    border: 1px solid rgba(24, 156, 240, 0.3);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
}

.preview-header[b-0dt1odeil5] {
    background: linear-gradient(135deg, rgba(24, 156, 240, 0.15), rgba(15, 122, 193, 0.1));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(24, 156, 240, 0.2);
}

.live-indicator[b-0dt1odeil5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #ff4444;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.pulse[b-0dt1odeil5] {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-b-0dt1odeil5 2s infinite;
}

@keyframes pulse-b-0dt1odeil5 {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

.date-badge[b-0dt1odeil5] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #189CF0;
    background: rgba(24, 156, 240, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.date-badge i[b-0dt1odeil5] {
    font-size: 0.85rem;
}

.preview-content[b-0dt1odeil5] {
    padding: 1.5rem 1rem;
}

.preview-content h3[b-0dt1odeil5] {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.topic-list[b-0dt1odeil5] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-list li[b-0dt1odeil5] {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    
    i {
        margin-top: 0.35rem;
    }
}

.topic-list li i[b-0dt1odeil5] {
    color: #189CF0;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.topic-list li div[b-0dt1odeil5] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.topic-list li strong[b-0dt1odeil5] {
    color: #fff;
    font-size: 0.95rem;
}

.topic-list li span[b-0dt1odeil5] {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.4;
}

.preview-footer[b-0dt1odeil5] {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    border-top: 1px solid rgba(24, 156, 240, 0.2);
}

.stat[b-0dt1odeil5] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #ddd;
}

.stat i[b-0dt1odeil5] {
    color: #189CF0;
}

/* Landing Features Section */
.landing-features[b-0dt1odeil5] {
}

.feature-grid[b-0dt1odeil5] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .feature-grid[b-0dt1odeil5] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card[b-0dt1odeil5] {
    background: linear-gradient(135deg, rgba(24, 156, 240, 0.08), rgba(15, 122, 193, 0.05));
    border: 1px solid rgba(24, 156, 240, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover[b-0dt1odeil5] {
    transform: translateY(-4px);
    border-color: rgba(24, 156, 240, 0.4);
    box-shadow: 0 8px 20px rgba(24, 156, 240, 0.15);
}

.feature-icon[b-0dt1odeil5] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #189CF0, #0F7AC1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i[b-0dt1odeil5] {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h3[b-0dt1odeil5] {
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    color: #fff;
}

.feature-card p[b-0dt1odeil5] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

/* Testimonial Section */
.landing-testimonial[b-0dt1odeil5] {
    padding: 3rem 1rem;
}

.testimonial-content[b-0dt1odeil5] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote[b-0dt1odeil5] {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #ddd;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    position: relative;
}

.testimonial-content blockquote[b-0dt1odeil5]::before {
    content: '"';
    font-size: 3rem;
    color: #189CF0;
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author[b-0dt1odeil5] {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
}

@media (max-width: 600px) {
    .testimonial-content blockquote[b-0dt1odeil5] {
        font-size: 1rem;
    }
}

/* /Pages/CopilotNews/NovinkyOdhlaseni.razor.rz.scp.css */
section.hero[b-w33g1s5ncz] {
    background-image: url("./img/copilot-news.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% 0px;

    @media (max-width: 1000px) {
        background-image: none;[b-w33g1s5ncz]
    }
}


section.form[b-w33g1s5ncz] {
    margin-top:0; max-width: 768px;

    @media (max-width: 768px) {
        max-width: 100%;[b-w33g1s5ncz]
    }

    small {
        font-size:1rem;
        display: inline-block;
        margin-left:10px;
    }

}

form div.message[b-w33g1s5ncz] {display: block; width:auto;}
/* /Pages/CopilotNews/NovinkyResub.razor.rz.scp.css */
section.hero[b-ilzf95kldi] {
    background-image: url("./img/copilot-news.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% 0px;

    @media (max-width: 1000px) {
        background-image: none;[b-ilzf95kldi]
    }
}


section.form[b-ilzf95kldi] {
    margin-top:0; max-width: 768px;

    @media (max-width: 768px) {
        max-width: 100%;[b-ilzf95kldi]
    }

    small {
        font-size:1rem;
        display: inline-block;
        margin-left:10px;
    }

}

form div.message[b-ilzf95kldi] {display: block; width:auto;}
/* /Pages/CopilotNews/SubscribeForm.razor.rz.scp.css */
form div:nth-of-type(1)[b-l8xsm9uhjv] { width: 90%; }
form div:nth-of-type(2)[b-l8xsm9uhjv] { width: 70%; }

@media only screen and (max-width: 520px) {
    form div:nth-of-type(1)[b-l8xsm9uhjv] { width: 100%; }
    form div:nth-of-type(2)[b-l8xsm9uhjv] { width: 100%; }
}

form div.message[b-l8xsm9uhjv] {display: block; width:auto;}
form .subscription h2[b-l8xsm9uhjv] {color:goldenrod;}
form .subscription p[b-l8xsm9uhjv] {margin-top: 1rem;}
form .subscription small[b-l8xsm9uhjv] {font-size: 0.8rem;}
form button[b-l8xsm9uhjv] {margin-right: 10px;}
/* /Pages/Error.razor.rz.scp.css */
code[b-1u2lcloy99] {color:palevioletred;}
/* /Pages/FiremniSkoleni/GitHubCopilot.razor.rz.scp.css */
section.hero[b-hc5tr0py8y] {
    /*background-image: url("./img/copilot-ides.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    /*background-position: 100% -20px;*/

    @media (max-width: 1000px) {
        background-image: none;[b-hc5tr0py8y]
    }
}

form div:nth-of-type(1)[b-hc5tr0py8y] { width:60%; }
form div:nth-of-type(2)[b-hc5tr0py8y] { width:30%; }
form div:nth-of-type(3)[b-hc5tr0py8y] { width:55%;}
form div:nth-of-type(4)[b-hc5tr0py8y] { width:35%; }
form div:nth-of-type(5)[b-hc5tr0py8y] { width:94%; }
form div:nth-of-type(6)[b-hc5tr0py8y] { width:94%; }
form div:nth-of-type(7)[b-hc5tr0py8y] { width:50%; }
form div:nth-of-type(8)[b-hc5tr0py8y] { display: block; }

@media only screen and (max-width: 520px) {
    form div:nth-of-type(1)[b-hc5tr0py8y] { width:100%; }
    form div:nth-of-type(2)[b-hc5tr0py8y] { width:100%; }
    form div:nth-of-type(3)[b-hc5tr0py8y] { width:100%; }
    form div:nth-of-type(4)[b-hc5tr0py8y] { width:100%;}
    form div:nth-of-type(5)[b-hc5tr0py8y] { width:100%; }
    form div:nth-of-type(6)[b-hc5tr0py8y] { width:100%; }
    form div:nth-of-type(7)[b-hc5tr0py8y] { width:100%; }
}

.spacing[b-hc5tr0py8y] {margin-top:4rem;}

section.hero[b-hc5tr0py8y] {padding-bottom: 1rem;}
section.freetext.h2[b-hc5tr0py8y] {padding-bottom: 0}

section.hero h1 em[b-hc5tr0py8y] {
    font-size: 0.6em;
    font-style: normal;
    color: #189CF0;
    font-weight: 500;
    position: relative;
    padding: 0 4px;
}

section.hero h1 em[b-hc5tr0py8y]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-color: rgba(74, 144, 226, 0.15);
    z-index: -1;
}
/* /Pages/Gdpr.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
section.hero[b-my8z624x6f] {
    /*background-image: url("./img/copilot.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    /*background-position: 100% -40px;*/

    @media (max-width: 1000px) {
        background-image: none;[b-my8z624x6f]
    }
}

section.features[b-my8z624x6f] {
    grid-template-columns: 1fr 1fr;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;[b-my8z624x6f]
    }

    a.feature-tile {
        position: relative;
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border:0;
    }

    a.feature-tile:hover[b-my8z624x6f] {
        transform: translateY(-2px);
        box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.4);
    }

    h3[b-my8z624x6f] {
        margin-top: 0.5rem;
    }
}

section.videos[b-my8z624x6f] {
    margin-top: 1rem;
}
/* /Pages/Kontakt.razor.rz.scp.css */
section.hero div[b-tjewc3xtig] {
    margin-bottom: 0;
}

section.contact div.photo a[b-tjewc3xtig] {color:#189CF0;}
section.contact div.photo a:hover[b-tjewc3xtig] {color: #fff;
    transition: color 0.2s ease;
    border-bottom-color: #fff;}

section.freetext[b-tjewc3xtig] {
    padding-bottom: 0;
}

section.calendar[b-tjewc3xtig] {
    iframe {
    width: 100%;
    max-width: 97%;
    min-height: 400px;
    border-radius: 10px;
    border:0;
    }
}
/* /Pages/NotFound.razor.rz.scp.css */
.freetext p[b-eukmhz084h] {margin-bottom: 1rem;}
/* /Pages/OnlineSkoleni/GitHubCopilot.razor.rz.scp.css */
section.hero[b-mqygvmw6f9] {
    /*background-image: url("./img/copilot-vsc.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    /*background-position: 100% -20px;*/

    @media (max-width: 1000px) {
        background-image: none;[b-mqygvmw6f9]
    }
}

form div:nth-of-type(1)[b-mqygvmw6f9] { width:57%; }
form div:nth-of-type(2)[b-mqygvmw6f9] { width:30%; }
form div:nth-of-type(3)[b-mqygvmw6f9] { width:57%;}
form div:nth-of-type(4)[b-mqygvmw6f9] { width:30%; }
form div:nth-of-type(5)[b-mqygvmw6f9] { width:50%; }
form div:nth-of-type(6)[b-mqygvmw6f9] { display:block; }

@media only screen and (max-width: 520px) {
    form div:nth-of-type(1)[b-mqygvmw6f9] { width:100%; }
    form div:nth-of-type(2)[b-mqygvmw6f9] { width:100%; }
    form div:nth-of-type(3)[b-mqygvmw6f9] { width:100%; }
    form div:nth-of-type(4)[b-mqygvmw6f9] { width:100%;}
    form div:nth-of-type(5)[b-mqygvmw6f9] { width:100%; }
}

.claim[b-mqygvmw6f9] {
    margin-top: 0;
    max-width: 768px;
    margin-bottom: 1rem;
}
/* /Pages/Prednasky/Index.razor.rz.scp.css */
section.hero[b-v3kou0ihmv] {
    /*background-image: url("./img/copilot-vsc.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    /*background-position: 100% -20px;*/

    @media (max-width: 1000px) {
        background-image: none;[b-v3kou0ihmv]
    }
}

section.form[b-v3kou0ihmv] {
    margin-top:0; 
    grid-template-columns: 1fr 1fr;

    @media (max-width: 1000px) {
        grid-template-columns: 1fr;
        .info[b-v3kou0ihmv] {margin-top: 1rem;}
    }
}
.item[b-v3kou0ihmv]  {padding-right: 10px;}
.item .message[b-v3kou0ihmv] {display: block; width:auto;}
.item h2[b-v3kou0ihmv], .item p[b-v3kou0ihmv] {margin-top:0;}
.item ul[b-v3kou0ihmv] {margin-top:1rem;}
.item .day[b-v3kou0ihmv] {font-weight: bold; margin-bottom: 1rem;}
.info p[b-v3kou0ihmv] {margin-top: 0; margin-bottom: 1rem;}
.info ul[b-v3kou0ihmv] {margin-bottom: 2rem;}
/* /Pages/Prednasky/Zaznam.razor.rz.scp.css */
section.hero div[b-ex1gr28kqk] {
    margin-bottom: 0;
}

section.video-section[b-ex1gr28kqk] {
    background: linear-gradient(135deg, rgba(24, 156, 240, 0.1) 0%, rgba(15, 122, 193, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(24, 156, 240, 0.2);

    @media (max-width: 768px) {
        background: none;
        border:0;
        padding: 0;
        margin-top: -2rem;[b-ex1gr28kqk]
    }
}

section.video-section .video-wrapper[b-ex1gr28kqk] {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(24, 156, 240, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.video-section .video-wrapper:hover[b-ex1gr28kqk] {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(24, 156, 240, 0.3);
}

/* /Pages/Quiz/Intro.razor.rz.scp.css */
.hero[b-9bsojqqexr] {padding-bottom:0;}

form div:nth-of-type(1)[b-9bsojqqexr] { width:45%; }
form div:nth-of-type(2)[b-9bsojqqexr] { width:45%; }

@media only screen and (max-width: 520px) {
    form div:nth-of-type(1)[b-9bsojqqexr] { width:100%; }
    form div:nth-of-type(2)[b-9bsojqqexr] { width:100%; }
}

.disclaimer[b-9bsojqqexr] {font-size:0.9rem;}
/* /Pages/Quiz/Questions.razor.rz.scp.css */
.hero[b-fhrw551ekb] {padding-bottom:0;}

h1 em[b-fhrw551ekb] {font-size:0.9rem; margin-left: 5px;}

form div:nth-of-type(1)[b-fhrw551ekb] { width:95%; }
textarea[b-fhrw551ekb] {height: 150px;}

section.form .price[b-fhrw551ekb]  {color: #fff !important; margin-left: 0 !important;}

.result[b-fhrw551ekb] {margin-left:1rem; margin-top: 1rem; padding-left: 1rem; }
.result p[b-fhrw551ekb] {margin-top: 0;}
.result.red[b-fhrw551ekb] {border-left: darkred 5px solid;}
.result.green[b-fhrw551ekb] {border-left: green 5px solid;}
.result.yellow[b-fhrw551ekb] {border-left: darkorange 5px solid;}

.media img[b-fhrw551ekb] {width:100%; box-sizing: border-box; margin-top: 1rem; border-radius: 10px;}
.media iframe[b-fhrw551ekb] {margin-top: 1rem;}

.spinner[b-fhrw551ekb] {width:50px; opacity: 0.8;}
/* /Pages/Quiz/Result.razor.rz.scp.css */
.hero[b-um4s13yion] {padding-bottom:0;}

.result[b-um4s13yion] {
    margin-top: 4rem;
    max-width: 800px;
}

.score-display[b-um4s13yion] {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.2);
}

.score-number[b-um4s13yion] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.score-number .current[b-um4s13yion] {
    font-size: 4rem;
    color: #189CF0;
    font-weight: 700;
    line-height: 1;
}

.score-number .separator[b-um4s13yion] {
    font-size: 2.5rem;
    color: #fff;
}

.score-number .max[b-um4s13yion] {
    font-size: 2.5rem;
    color: #fff;
}

.score-number .label[b-um4s13yion] {
    font-size: 1.25rem;
    color: #fff;
    margin-left: 0.5rem;
}

.score-bar[b-um4s13yion] {
    position: relative;
    width: 100%;
    height: 40px;
    background: #184066;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 2px solid #285076;
}

.score-bar-fill[b-um4s13yion] {
    height: 100%;
    background: linear-gradient(90deg, #189CF0 0%, #28aCF0 40%, #189CF0 100%);
    border-radius: 18px;
    transition: width 0.8s ease-out;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.score-bar-fill[b-um4s13yion]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 18px;
}

.score-labels[b-um4s13yion] {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .result[b-um4s13yion] {
        padding: 2rem 1rem;
    }

    .score-display[b-um4s13yion] {
        padding: 2rem 1.5rem;
    }

    .score-number .current[b-um4s13yion] {
        font-size: 3rem;
    }

    .score-number .separator[b-um4s13yion],
    .score-number .max[b-um4s13yion] {
        font-size: 2rem;
    }

    .score-number .label[b-um4s13yion] {
        font-size: 1rem;
    }

    .score-bar[b-um4s13yion] {
        height: 32px;
    }
}
/* /Pages/Terms.razor.rz.scp.css */
