/* /Auth/Login.razor.rz.scp.css */


/* ========================================
   FEATURES SECTION
   Styles for the features grid showcasing key benefits with icons and descriptions
   ======================================== */

#features[b-8kz9b3nt4y] {
    background-color: var(--color-primary);
}

/* Features Header */
.features-header[b-8kz9b3nt4y] {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}

.features-title[b-8kz9b3nt4y] {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 20px;
}

.features-header p[b-8kz9b3nt4y] {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 24px;
    text-align: justify;
}

/* Make the Features section header text white only */
#features .features-header .features-title[b-8kz9b3nt4y] {
    color: #fff;
    /* "Why Choose MAPs Med Resources?" */
}

#features .features-header p[b-8kz9b3nt4y] {
    color: #fff;
    /* the two paragraphs below the title */
}

/* Features Grid Layout */
.features-grid[b-8kz9b3nt4y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Feature Cards */
.feature-card[b-8kz9b3nt4y] {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 6px 6px 12px 0px #c4b1ff;
    border: 1px solid transparent;
    padding: 36px 22px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    will-change: transform, box-shadow;
}

.feature-icon[b-8kz9b3nt4y] {
    height: 48px;
    margin-bottom: 24px;
}

.feature-card-title[b-8kz9b3nt4y] {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 14px;
}

.feature-card p[b-8kz9b3nt4y] {
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
}

.feature-card:hover[b-8kz9b3nt4y],
.feature-card:focus-visible[b-8kz9b3nt4y] {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(140, 82, 255, 0.15);
    border-color: var(--color-primary-lighter);
    background-color: #fdfbff;
}

/* Features Responsive Styles */
@media (max-width: 1024px) {
    .features-grid[b-8kz9b3nt4y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-title[b-8kz9b3nt4y] {
        font-size: 32px;
    }

    .features-header p[b-8kz9b3nt4y] {
        font-size: 18px;
    }

    .features-grid[b-8kz9b3nt4y] {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ECOSYSTEM SECTION
   Styles for the ecosystem cards showcasing Med Mastery and Free Resources
   ======================================== */

#ecosystem[b-8kz9b3nt4y] {
    background-color: var(--color-white);
}

.ecosystem-title[b-8kz9b3nt4y] {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 64px;
}

/* Ecosystem Grid Layout */
.ecosystem-grid[b-8kz9b3nt4y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

/* Ecosystem Cards */
.eco-card[b-8kz9b3nt4y] {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 4px 6px 12px 6px #c4b1ff;
    overflow: hidden;
}

.eco-card-header[b-8kz9b3nt4y] {
    background-color: var(--color-primary);
    height: 208px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .eco-card-header img[b-8kz9b3nt4y] {
        height: 80px;
        opacity: 0.7;
    }

.eco-card-body[b-8kz9b3nt4y] {
    padding: 24px;
}

.eco-card-title-group[b-8kz9b3nt4y] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .eco-card-title-group img[b-8kz9b3nt4y] {
        width: 33px;
        height: 33px;
    }

    .eco-card-title-group h3[b-8kz9b3nt4y] {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }

.eco-card-body p[b-8kz9b3nt4y] {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 24px;
    min-height: 60px;
}

.eco-card-body .btn[b-8kz9b3nt4y] {
    width: 100%;
    box-sizing: border-box;
}

/* Ecosystem Responsive Styles */
@media (max-width: 1024px) {
    .ecosystem-grid[b-8kz9b3nt4y] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ecosystem-title[b-8kz9b3nt4y] {
        font-size: 32px;
    }

    .eco-card-header img[b-8kz9b3nt4y] {
        height: 60px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   Styles for student testimonials with star ratings and author information
   ======================================== */

#testimonials[b-8kz9b3nt4y] {
    background-color: var(--color-white);
}

/* Testimonials Header */
.testimonials-header[b-8kz9b3nt4y] {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-title[b-8kz9b3nt4y] {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 10px;
}

.testimonials-header p[b-8kz9b3nt4y] {
    font-size: 20px;
    margin: 0;
}

/* Testimonials Grid Layout */
.testimonials-grid[b-8kz9b3nt4y] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-left: -22px;
}

/* Individual Testimonial Cards */
.testimonial-card[b-8kz9b3nt4y] {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 6px 8px 12px 2px #c4b1ff;
    opacity: 0.8;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.star-rating[b-8kz9b3nt4y] {
    display: flex;
    gap: -3px;
    margin-bottom: 18px;
}

    .star-rating img[b-8kz9b3nt4y] {
        width: 32px;
        height: 32px;
    }

.testimonial-quote[b-8kz9b3nt4y] {
    font-size: 14px;
    line-height: 1.25;
    margin: 0 0 24px;
    font-style: normal;
    flex-grow: 1;
}

.testimonial-author[b-8kz9b3nt4y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

    .testimonial-author p[b-8kz9b3nt4y] {
        margin: 0;
        font-size: 16px;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
    }

    .testimonial-author strong[b-8kz9b3nt4y] {
        font-weight: 600;
        font-family: var(--font-body);
        font-weight: 700;
    }

.author-tag[b-8kz9b3nt4y] {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}

.testimonials-slider[b-8kz9b3nt4y] {
    position: relative;
}

.testimonial-arrow[b-8kz9b3nt4y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 999px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(140, 82, 255, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

    .testimonial-arrow img[b-8kz9b3nt4y] {
        width: 26px;
        height: 26px;
    }

    .testimonial-arrow.prev[b-8kz9b3nt4y] {
        left: -85px;
    }

        .testimonial-arrow.prev img[b-8kz9b3nt4y] {
            transform: rotate(180deg);
        }

    .testimonial-arrow.next[b-8kz9b3nt4y] {
        right: -85px;
    }

    .testimonial-arrow:hover[b-8kz9b3nt4y],
    .testimonial-arrow:focus-visible[b-8kz9b3nt4y] {
        transform: translateY(-50%) translateY(-2px);
        box-shadow: 0 10px 18px rgba(140, 82, 255, 0.24);
    }

.testimonial-card:hover[b-8kz9b3nt4y],
.testimonial-card:focus-visible[b-8kz9b3nt4y] {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(140, 82, 255, 0.2);
    background-color: #fdfbff;
}

.testimonials-action[b-8kz9b3nt4y] {
    text-align: center;
    margin-top: 64px;
}

/* Testimonials Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-grid[b-8kz9b3nt4y] {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-arrow.prev[b-8kz9b3nt4y] {
        left: -16px;
    }

    .testimonial-arrow.next[b-8kz9b3nt4y] {
        right: -16px;
    }
    .testimonial-author[b-8kz9b3nt4y] {
        flex-wrap: wrap;
        align-items: flex-start;
    }

        .testimonial-author p[b-8kz9b3nt4y] {
            white-space: normal;
            width: 100%;
        }

    .author-tag[b-8kz9b3nt4y] {
        margin-top: 6px;
    }
}

@media (max-width: 768px) {
    .testimonials-title[b-8kz9b3nt4y] {
        font-size: 32px;
    }

    .testimonials-header p[b-8kz9b3nt4y] {
        font-size: 18px;
    }

    .testimonial-author[b-8kz9b3nt4y] {
        flex-wrap: wrap;
    }

        .testimonial-author p[b-8kz9b3nt4y] {
            white-space: normal;
        }

    .testimonials-slider[b-8kz9b3nt4y] {
        padding: 0 36px;
    }

    .testimonial-arrow[b-8kz9b3nt4y] {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

        .testimonial-arrow img[b-8kz9b3nt4y] {
            width: 20px;
            height: 20px;
        }

        .testimonial-arrow.prev[b-8kz9b3nt4y] {
            left: 8px;
        }

        .testimonial-arrow.next[b-8kz9b3nt4y] {
            right: 8px;
        }
}

@media (max-width: 540px) {
    .testimonials-slider[b-8kz9b3nt4y] {
        padding: 0 28px;
    }

    .testimonial-arrow.prev[b-8kz9b3nt4y] {
        left: 6px;
    }

    .testimonial-arrow.next[b-8kz9b3nt4y] {
        right: 6px;
    }
}

/* ========================================
   CALL TO ACTION (CTA) SECTION
   Styles for the call-to-action section with prominent action buttons
   ======================================== */

#cta[b-8kz9b3nt4y] {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-container h2[b-8kz9b3nt4y] {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin: 0 auto 16px;
    max-width: 850px;
}

.cta-container p[b-8kz9b3nt4y] {
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto 40px;
    max-width: 1070px;
}

/* CTA Action Buttons */
.cta-actions[b-8kz9b3nt4y] {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.btn-cta-light[b-8kz9b3nt4y] {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    width: 400px;
}

    .btn-cta-light:hover[b-8kz9b3nt4y],
    .btn-cta-light:focus-visible[b-8kz9b3nt4y] {
        background-color: var(--color-primary);
        color: var(--color-white);
        border-color: var(--color-white);
    }

.btn-cta-dark[b-8kz9b3nt4y] {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    font-size: 18px;
    font-weight: 600;
    width: 400px;
}

    .btn-cta-dark:hover[b-8kz9b3nt4y],
    .btn-cta-dark:focus-visible[b-8kz9b3nt4y] {
        background-color: var(--color-white);
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

/* CTA Responsive Styles */
@media (max-width: 1024px) {
    .cta-actions[b-8kz9b3nt4y] {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-light[b-8kz9b3nt4y],
    .btn-cta-dark[b-8kz9b3nt4y] {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .cta-container h2[b-8kz9b3nt4y] {
        font-size: 32px;
    }

    .cta-container p[b-8kz9b3nt4y] {
        font-size: 18px;
    }
}


/* ========================================
       HERO SECTION
       Styles for the hero banner with title, subtitle, action buttons, and overlapping images
       CSS for this can be found in Login.razor file within style tags. It was put there as home page needs to load instantly and correct for good first impression.
       ======================================== */
/* /Pages/Test/1. Course.razor.rz.scp.css */
html[b-brt3erzbmh], body[b-brt3erzbmh] {
    font-family: 'Quicksand', sans-serif !important;
}
    
.page-form[b-brt3erzbmh] {
    flex: 1;
    display: flex;
}
.warning[b-brt3erzbmh] {
    margin: 0;
    font-size: 20px;
    color: #b91c1c;
    font-weight: 600;
    text-align: justify;
}

.dashboard-container > .welcome-title[b-brt3erzbmh] {
    order: 1;
}

.dashboard-container > .welcome-subtitle[b-brt3erzbmh] {
    order: 2;
}

.dashboard-container > .study-now-btn[b-brt3erzbmh] {
    order: 3;
}

.dashboard-container > .dashboard-widgets[b-brt3erzbmh] {
    order: 4;
}

/* Centered dashboard column */
.dashboard-container[b-brt3erzbmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
}

/* Main welcome heading */
.welcome-title[b-brt3erzbmh] {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-top: -16px;
}

.welcome-subtitle[b-brt3erzbmh] {
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
    text-align: center;
}

/* Primary CTA button */
.study-now-btn[b-brt3erzbmh] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 278px;
    height: 64px;
    margin-top: 40px;
    background-color: #ffffff;
    border: 3px solid #8c52ff;
    border-radius: 35px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #8c52ff;
}

/* Shared hover/focus motion for primary buttons */
.my-account-btn[b-brt3erzbmh],
.study-now-btn[b-brt3erzbmh] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .my-account-btn:hover[b-brt3erzbmh],
    .my-account-btn:focus-visible[b-brt3erzbmh],
    .study-now-btn:hover[b-brt3erzbmh],
    .study-now-btn:focus-visible[b-brt3erzbmh] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
    }

    .my-account-btn:hover[b-brt3erzbmh],
    .my-account-btn:focus-visible[b-brt3erzbmh] {
        background-color: #8c52ff;
        color: #ffffff;
    }

    .study-now-btn:hover[b-brt3erzbmh],
    .study-now-btn:focus-visible[b-brt3erzbmh] {
        background-color: #8c52ff;
        color: #ffffff;
        border-color: #8c52ff;
    }

    .my-account-btn:focus-visible[b-brt3erzbmh],
    .study-now-btn:focus-visible[b-brt3erzbmh] {
        outline: 2px solid rgba(140, 82, 255, 0.35);
        outline-offset: 3px;
    }

/* Widget row and spacing */
.dashboard-widgets[b-brt3erzbmh] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    max-width: 1664px;
    margin-top: 44px;
}

/* Standard card styling reused across widgets */
.stat-card[b-brt3erzbmh] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
    width: 288px;
    padding: 32px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .stat-card:hover[b-brt3erzbmh],
    .stat-card:focus-within[b-brt3erzbmh] {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(140, 82, 255, 0.25);
    }

.card-title[b-brt3erzbmh] {
    font-size: 26px;
}

.card-divider[b-brt3erzbmh] {
    width: 224px;
    border: none;
    border-top: 1px solid #000000;
    margin: 12px 0;
    opacity:inherit;
}

.score-card[b-brt3erzbmh] {
    gap: 12px;
}

.score-item[b-brt3erzbmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.score-icon[b-brt3erzbmh] {
    width: 32px;
    height: 32px;
}

.score-label[b-brt3erzbmh] {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.score-value[b-brt3erzbmh] {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: #8c52ff;
    margin: 0;
}

/* Course selector sizing within the widget row */
.course-selector-wrapper[b-brt3erzbmh] {
    flex-grow: 1;
    max-width: 820px;
}

    .course-selector-wrapper .custom-select[b-brt3erzbmh] {
        margin-top: -200px;
    }

/* Custom dropdown container and anchoring */
.custom-select[b-brt3erzbmh] {
    position: relative;
    width: 100%;
}

/* Default trigger styling (shared dropdown tokens) */
.custom-select__trigger[b-brt3erzbmh] {
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238C52FF' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: right 12px center;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 56px;
    border: 3px solid #8c52ff;
    border-radius: 35px;
    padding: 0 56px 0 28px;
    font-size: 18px;
    font-weight: 700;
    color: #8c52ff;
    background-image: none;
    position: relative;
}

/* Course selector trigger to match dashboard button aesthetic */
#courseSelect .custom-select__trigger[b-brt3erzbmh] {
    display: flex;
    align-items: center;
    height: 56px;
    border: 3px solid #8c52ff;
    border-radius: 35px;
    padding: 0 56px 0 28px;
    font-size: 18px;
    font-weight: 700;
    color: #8c52ff;
    background-image: none;
    position: relative;
}

    #courseSelect .custom-select__trigger[b-brt3erzbmh]::after {
        content: '';
        position: absolute;
        right: 24px;
        top: 50%;
        width: 24px;
        height: 24px;
        transform: translateY(-50%) rotate(0deg);
        background-image: url("images/icon-arrow-down.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px 24px;
        transition: transform 0.2s ease;
        pointer-events: none;
    }

#courseSelect.is-open .custom-select__trigger[b-brt3erzbmh]::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__trigger:focus-visible[b-brt3erzbmh] {
    outline: 2px solid #8c52ff;
    outline-offset: 2px;
}

.custom-select.is-disabled .custom-select__trigger[b-brt3erzbmh] {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Dropdown panel and scrollable list */
.custom-select__menu[b-brt3erzbmh] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1.8px solid #8a38f5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(140, 82, 255, 0.12);
    padding: 4px 0;
    margin: 0;
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
    z-index: 10;
}

/* Menu options with multi-line wrapping */
.custom-select__option[b-brt3erzbmh] {
    padding: 10px 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    white-space: normal;
    line-height: 1.4;
}

    .custom-select__option:hover:not(.is-disabled)[b-brt3erzbmh],
    .custom-select__option:focus-visible:not(.is-disabled)[b-brt3erzbmh],
    .custom-select__option.is-selected[b-brt3erzbmh] {
        background-color: #8c52ff;
        color: #ffffff;
    }

    .custom-select__option.is-disabled[b-brt3erzbmh] {
        cursor: not-allowed;
        opacity: 0.6;
    }

.custom-select.is-open .custom-select__menu[b-brt3erzbmh] {
    display: block;
}

/* Single-line selected value with truncation */
#courseSelect .custom-select__trigger[b-brt3erzbmh] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Productivity widget spacing */
.productivity-card[b-brt3erzbmh] {
    gap: 10px;
}

.productivity-item[b-brt3erzbmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.prod-label-group[b-brt3erzbmh] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-label[b-brt3erzbmh] {
    font-size: 18px;
    font-weight: 500;
}

.prod-value[b-brt3erzbmh] {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: #8c52ff;
    margin: 0;
}

/* Tablet layout: stack widgets and reduce widths */
@media (max-width: 1200px) {
    .dashboard-widgets[b-brt3erzbmh] {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-top: 244px;
    }

    .course-selector-wrapper[b-brt3erzbmh] {
        width: 100%;
        max-width: 600px;
        order: 1;
    }

    .stat-card[b-brt3erzbmh] {
        width: 100%;
        max-width: 400px;
    }

    .score-card[b-brt3erzbmh] {
        order: 2;
        margin-top: -16px;
    }

    .productivity-card[b-brt3erzbmh] {
        order: 3;
    }
}

/* Mobile layout: tighter typography and spacing */
@media (max-width: 768px) {
    .main-content[b-brt3erzbmh] {
        padding: 40px 20px;
    }

    .welcome-title[b-brt3erzbmh] {
        font-size: 36px;
    }

    .welcome-subtitle[b-brt3erzbmh] {
        font-size: 18px;
    }

    .dashboard-widgets[b-brt3erzbmh] {
        margin-top: 244px;
    }

    .course-selector-wrapper[b-brt3erzbmh] {
        order: 1;
    }

    .score-card[b-brt3erzbmh] {
        order: 2;
    }

    .productivity-card[b-brt3erzbmh] {
        order: 3;
    }
}

.main-content[b-brt3erzbmh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 100px;
}
/* /Pages/Test/2. Filter.razor.rz.scp.css */
/* Global design tokens used across layout and UI elements */

/* Base page defaults */
body[b-aev9iek02k] {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #dcd4ff;
    color: #000000;
}

/* Outer wrapper to constrain page width and prevent horizontal scroll */
.page-wrapper[b-aev9iek02k] {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Shared content container sizing */
.container[b-aev9iek02k] {
    max-width: 1664px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Link reset for button-like anchors */
a[b-aev9iek02k] {
    text-decoration: none;
    color: inherit;
}

/* CSS for section section:header */
.site-header[b-aev9iek02k] {
    padding: 32px 20px;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: transparent;
}

.header-container[b-aev9iek02k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1664px;
    height: 96px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffffff;
    border: 3px solid #8c52ff;
    border-radius: 45px;
    box-sizing: border-box;
}

.logo-link[b-aev9iek02k] {
    display: flex;
    align-items: center;
    gap: 6.5px;
}

.logo-img[b-aev9iek02k] {
    width: 62.4px;
    height: 62.4px;
}

.logo-text-stack[b-aev9iek02k] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text[b-aev9iek02k] {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    line-height: 1.1;
    color: #000000;
}

.logo-slogan[b-aev9iek02k] {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #8c52ff;
}

.account-controls[b-aev9iek02k] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-icon-link[b-aev9iek02k] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

    .profile-icon-link img[b-aev9iek02k] {
        width: 58.67px;
        height: 58.67px;
    }

.my-account-btn[b-aev9iek02k] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 208px;
    height: 64px;
    background-color: #8c52ff;
    border-radius: 35px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

@media (max-width: 768px) {
    .header-container[b-aev9iek02k] {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .logo-text[b-aev9iek02k] {
        font-size: 20px;
    }

    .logo-slogan[b-aev9iek02k] {
        font-size: 11px;
    }

    .account-controls[b-aev9iek02k] {
        flex-direction: column;
        width: 100%;
    }

    .my-account-btn[b-aev9iek02k] {
        width: 100%;
    }
}

/* CSS for section section:hero */
/* Scale down main content sections to balance layout on this page */
#hero[b-aev9iek02k],
.filters-section[b-aev9iek02k] {
    transform: scale(0.94);
    transform-origin: top center;
    margin-top: -12px;
    margin-bottom: 48px;
}

/* Hero spacing and alignment */
.hero-section[b-aev9iek02k] {
    text-align: center;
    padding-top: 48px;
    padding-bottom: 0px;
}

    /* Allow absolute positioning within hero header */
    .hero-section .container[b-aev9iek02k] {
        position: relative;
    }

/* Header row containing title and back button */
.hero-header[b-aev9iek02k] {
    margin-bottom: 8px;
}

/* Primary page title */
.hero-title[b-aev9iek02k] {
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

/* Back navigation button styled to match primary CTAs */
.back-home-button[b-aev9iek02k] {
    position: absolute;
    right: 20px;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 48px;
    background-color: #ffffff;
    border: 3px solid #8c52ff;
    border-radius: 25px;
    color: #8c52ff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-sizing: border-box;
}

/* Supportive subtitle text */
.hero-subtitle[b-aev9iek02k] {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 32px;
}

/* Main action button */
.study-now-button[b-aev9iek02k] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 278px;
    height: 70px;
    background-color: #ffffff;
    border: 3px solid #8c52ff;
    border-radius: 35px;
    color: #8c52ff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-top: 24px;
}
/* Shared hover/press feedback for buttons */
.my-account-btn[b-aev9iek02k],
.back-home-button[b-aev9iek02k],
.study-now-button[b-aev9iek02k] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .my-account-btn:hover[b-aev9iek02k],
    .my-account-btn:focus-visible[b-aev9iek02k],
    .back-home-button:hover[b-aev9iek02k],
    .back-home-button:focus-visible[b-aev9iek02k],
    .study-now-button:hover[b-aev9iek02k],
    .study-now-button:focus-visible[b-aev9iek02k] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.18);
    }

    .my-account-btn:hover[b-aev9iek02k],
    .my-account-btn:focus-visible[b-aev9iek02k] {
        background-color: #8c52ff;
        color: var(--surface-color);
    }

    .back-home-button:hover[b-aev9iek02k],
    .back-home-button:focus-visible[b-aev9iek02k],
    .study-now-button:hover[b-aev9iek02k],
    .study-now-button:focus-visible[b-aev9iek02k] {
        background-color: #8c52ff;
        color: #ffffff;
        border-color: #8c52ff;
    }

    .my-account-btn:focus-visible[b-aev9iek02k],
    .back-home-button:focus-visible[b-aev9iek02k],
    .study-now-button:focus-visible[b-aev9iek02k] {
        outline: 2px solid rgba(140, 82, 255, 0.3);
        outline-offset: 3px;
    }

    .my-account-btn:hover[b-aev9iek02k],
    .my-account-btn:focus-visible[b-aev9iek02k] {
        color: #ffffff;
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
    }

    .my-account-btn:focus-visible[b-aev9iek02k] {
        outline: 2px solid rgba(140, 82, 255, 0.35);
    }

    .study-now-button:hover[b-aev9iek02k],
    .study-now-button:focus-visible[b-aev9iek02k] {
        background-color: #8c52ff;
        color: #ffffff;
        border-color: #8c52ff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
    }

    .back-home-button:hover[b-aev9iek02k],
    .back-home-button:focus-visible[b-aev9iek02k] {
        background-color: #8c52ff;
        color: #ffffff;
        border-color: #8c52ff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
    }

    .study-now-button:focus-visible[b-aev9iek02k] {
        outline: 2px solid rgba(140, 82, 255, 0.35);
    }

/* Tablet layout: stack hero header and center back button */
@media (max-width: 992px) {
    .hero-header[b-aev9iek02k] {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .back-home-button[b-aev9iek02k] {
        position: static;
        margin: 0 auto;
    }
}

/* Mobile layout: tighter spacing and stacked header elements */
@media (max-width: 768px) {
    .hero-section[b-aev9iek02k] {
        padding-top: 32px;
    }

    .hero-header[b-aev9iek02k] {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .back-home-button[b-aev9iek02k] {
        margin: 0 auto;
    }

    .hero-title[b-aev9iek02k] {
        font-size: 36px;
    }

    .hero-subtitle[b-aev9iek02k] {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .study-now-button[b-aev9iek02k] {
        margin-top: 20px;
    }
}

/* CSS for section section:filters */
/* Filters section wrapper */
.filters-section[b-aev9iek02k] {
    padding-bottom: 31px;
}

/* Form layout with vertical grouping */
.filter-form[b-aev9iek02k] {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Grid layout for filter groups */
.filter-grid[b-aev9iek02k] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 33px;
}

/* Filter group container to keep title + options together */
.filter-group[b-aev9iek02k] {
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Group heading chip with hover feedback */
.filter-title[b-aev9iek02k] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 4px 6px 4px 0 rgba(140, 82, 255, 0.35);
    padding: 9px 32px;
    margin-bottom: 16px;
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .filter-title:hover[b-aev9iek02k],
    .filter-title:focus-visible[b-aev9iek02k] {
        transform: translateY(-2px);
        box-shadow: 0 8px 14px rgba(140, 82, 255, 0.18);
    }

/* Card-like container for checkbox options */
.filter-options[b-aev9iek02k] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 4px 6px 4px 0 rgba(140, 82, 255, 0.35);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

    /* Keep long paper-type labels on a single line */
    .filter-options[data-filter-group="paper-type"] .checkbox-label-text[b-aev9iek02k] {
        white-space: nowrap;
    }

    /* Slightly shift the select-all button for the paper-type group */
    .filter-options[data-filter-group="paper-type"] .select-all-btn[b-aev9iek02k] {
        align-self: flex-end;
        margin-right: 20px;
    }

    /* Tighten right padding for the paper-type block */
    .filter-options[data-filter-group="paper-type"][b-aev9iek02k] {
        padding-right: 4px; /* adjust as needed */
    }

/* Desktop label sizing to fit long paper-type text */
@media (min-width: 1201px) {
    .filter-options[data-filter-group="paper-type"] .checkbox-label-text[b-aev9iek02k] {
        font-size: 18px;
    }
}

/* Tablet adjustments for paper-type density */
@media (max-width: 1200px) {
    .filter-options[data-filter-group="paper-type"][b-aev9iek02k] {
        padding: 20px;
    }

        .filter-options[data-filter-group="paper-type"] .checkbox-label-text[b-aev9iek02k] {
            font-size: 18px;
        }

        .filter-options[data-filter-group="paper-type"] .checkbox-item label[b-aev9iek02k] {
            gap: 8px;
        }
}

/* Mobile adjustments for paper-type density */
@media (max-width: 768px) {
    .filter-options[data-filter-group="paper-type"][b-aev9iek02k] {
        padding: 18px;
    }

        .filter-options[data-filter-group="paper-type"] .checkbox-label-text[b-aev9iek02k] {
            font-size: 17px;
        }
}

/* Select-all toggle button */
.select-all-btn[b-aev9iek02k] {
    align-self: flex-end;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #8c52ff;
    background-color: transparent;
    color: #8c52ff;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .select-all-btn:hover[b-aev9iek02k],
    .select-all-btn:focus-visible[b-aev9iek02k] {
        background-color: #8c52ff;
        color: var(--surface-color);
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(140, 82, 255, 0.25);
    }

    .select-all-btn:focus-visible[b-aev9iek02k] {
        outline: 2px solid rgba(140, 82, 255, 0.3);
        outline-offset: 2px;
    }

/* Checkbox row layout, scaled to reduce visual density */
.checkbox-item label[b-aev9iek02k] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transform: scale(0.86);
    transform-origin: left center;
}

.checkbox-item input[type="checkbox"][b-aev9iek02k] {
    display: none;
}

/* Custom checkbox box */
.custom-checkbox[b-aev9iek02k] {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #8c52ff;
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Checkbox label typography */
.checkbox-label-text[b-aev9iek02k] {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.checkbox-item input:checked ~ .custom-checkbox[b-aev9iek02k] {
    border-width: 2px;
}

.checkbox-item input:checked ~ .checkbox-label-text[b-aev9iek02k] {
    color: #8c52ff;
}

.checkbox-item input:checked ~ .custom-checkbox[b-aev9iek02k]::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 8px;
    height: 15px;
    border: solid #8c52ff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Year range title aligned with selector row */
.year-range-group .filter-title[b-aev9iek02k] {
    text-align: left;
    width: auto;
    display: inline-block;
    float: none;
}

/* Container for min/max year selects */
.year-range-options[b-aev9iek02k] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 4px 6px 4px 0 rgba(140, 82, 255, 0.35);
    padding: 23px 32px;
    min-height: 96px;
    box-sizing: border-box;
}

/* Positioning context for inline error message */
.year-range-group[b-aev9iek02k] {
    position: relative;
}

/* Label + dropdown pairing */
.year-selector-wrapper[b-aev9iek02k] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.year-label[b-aev9iek02k] {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

/* Year dropdown container */
.custom-select[b-aev9iek02k] {
    position: relative;
    width: 140px;
}

/* Year dropdown trigger button */
.custom-select__trigger[b-aev9iek02k] {
    width: 100%;
    height: 50px;
    padding: 0 40px 0 28px;
    border: 3px solid #8c52ff;
    border-radius: 35px;
    background-color: #ffffff;
    color: #8c52ff;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    appearance: none;
    box-sizing: border-box;
}

    /* Arrow icon that flips on open */
    .custom-select__trigger[b-aev9iek02k]::after {
        content: '';
        position: absolute;
        right: 16px;
        top: 50%;
        width: 24px;
        height: 24px;
        transform: translateY(-50%) rotate(0deg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px 24px;
        transition: transform 0.2s ease;
        pointer-events: none;
    }

.year-select--min .custom-select__trigger[b-aev9iek02k]::after {
    background-image: url("images/CourseImages/icon-arrow-down-primary.svg");
}

.year-select--max .custom-select__trigger[b-aev9iek02k]::after {
    background-image: url("images/CourseImages/icon-arrow-down-secondary.svg");
}

/* Rotate arrow when dropdown is open */
.custom-select.is-open .custom-select__trigger[b-aev9iek02k]::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__trigger:focus-visible[b-aev9iek02k] {
    outline: 2px solid rgba(140, 82, 255, 0.35);
    outline-offset: 3px;
}

/* Dropdown menu panel */
.custom-select__menu[b-aev9iek02k] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #8c52ff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(140, 82, 255, 0.18);
    padding: 4px 0;
    margin: 0;
    list-style: none;
    max-height: 160px;
    overflow-y: auto;
    z-index: 5;
}

/* Dropdown option rows */
.custom-select__option[b-aev9iek02k] {
    padding: 8px 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
}

    .custom-select__option:hover[b-aev9iek02k],
    .custom-select__option:focus-visible[b-aev9iek02k],
    .custom-select__option.is-selected[b-aev9iek02k] {
        background-color: #8c52ff;
        color: #ffffff;
    }

.custom-select.is-open .custom-select__menu[b-aev9iek02k] {
    display: block;
}

/* Error badge displayed near the year range block */
.year-range-error[b-aev9iek02k] {
    position: absolute;
    top: -36px;
    right: 4px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(140, 82, 255, 0.18);
}

    /* Honor hidden attribute to fully collapse the message */
    .year-range-error[hidden][b-aev9iek02k] {
        display: none;
    }

.year-range-error__icon[b-aev9iek02k] {
    width: 20px;
    height: 20px;
}

/* Tablet grid sizing to keep both columns uniform */
@media (max-width: 1200px) and (min-width: 769px) {
    .filter-grid[b-aev9iek02k] {
        grid-template-columns: repeat(2, minmax(0, clamp(260px, 40vw, 360px)));
        justify-content: center;
    }
}

/* Mobile layout: stack filters and year selectors */
@media (max-width: 768px) {
    .filter-grid[b-aev9iek02k] {
        grid-template-columns: 1fr;
    }

    .year-range-options[b-aev9iek02k] {
        flex-direction: column;
        height: auto;
        gap: 20px;
        align-items: center;
    }

    .year-selector-wrapper[b-aev9iek02k] {
        width: 100%;
        justify-content: space-between;
    }
}

/* CSS for section section:footer */
.site-footer[b-aev9iek02k] {
    background-color: #ffffff;
    border-top: 2px solid #8c52ff;
    padding: 20px 50px;
    font-size: 14px;
}

.footer-container[b-aev9iek02k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1920px;
    margin: 0 auto;
}

.copyright[b-aev9iek02k] {
    font-weight: 600;
    color: #8c52ff;
    flex-shrink: 0;
}

.footer-description[b-aev9iek02k] {
    font-weight: 500;
    text-align: justify;
    max-width: 804px;
    margin: 0 20px;
}

.email-contact[b-aev9iek02k] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .footer-container[b-aev9iek02k] {
        flex-direction: column;
        text-align: center;
    }

    .footer-description[b-aev9iek02k] {
        text-align: center;
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-footer[b-aev9iek02k] {
        padding: 20px;
    }
}
.progress-container[b-aev9iek02k] {
    width: 40%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 24px;
    position: relative;
    margin-left: 30%;
}

.progress-bar[b-aev9iek02k] {
    height: 100%;
    background-color: #007bff;
    display: flex;
    justify-content: center; /* This centers the text horizontally within the bar */
    align-items: center; /* This centers the text vertically */
    transition: width 0.3s ease-in-out;
}

.progress-label[b-aev9iek02k] {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.init-progress-wrapper[b-aev9iek02k] {
    display: flex;
    justify-content: center;
    margin-top: 20rem;
}
/* /Pages/Test/ConfirmFullScreen.razor.rz.scp.css */
#confirmfullscreen-overlay[b-6jqi35t7ip] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#confirmfullscreen-image[b-6jqi35t7ip] {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  margin: 5vh;
  object-fit: contain;
}

.btn-close[b-6jqi35t7ip] {
  position: absolute;
  top: 1%;
  right: 2%;
  font-size: 1rem;
  background-color: white;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10000;
  padding: 0.5rem 1rem;
  border-radius: 50%;
}

@media (max-width: 1790px) {

  .btn-close[b-6jqi35t7ip] {
    font-size: 0.75rem;
  }
}

@media (max-width: 1200px) {

  .btn-close[b-6jqi35t7ip] {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {

  .btn-close[b-6jqi35t7ip] {
    font-size: 0.5rem;
  }
}

@media (max-width: 480px) {
  .btn-close[b-6jqi35t7ip] {
    font-size: 0.5rem;
  }
}
/* /Shared/FullScreenImage.razor.rz.scp.css */
#fullscreen-overlay[b-vzsrr8oqm2] {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 3%;
    padding-bottom: 12%;
    box-sizing: border-box;
    touch-action: manipulation;
}

#fullscreen-overlay[b-vzsrr8oqm2] {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.6) transparent;
}

    #fullscreen-overlay[b-vzsrr8oqm2]::-webkit-scrollbar {
        width: 8px;
    }

    #fullscreen-overlay[b-vzsrr8oqm2]::-webkit-scrollbar-thumb {
        background-color: rgba(255,255,255,0.5);
        border-radius: 4px;
    }

#fullscreen-image[b-vzsrr8oqm2] {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 40px);
    max-height: calc(100dvh - 120px);
    border-radius: 10px;
    margin: 2% auto 5% auto;
    object-fit: contain;
    touch-action: manipulation;
}

.btn-close[b-vzsrr8oqm2] {
    position: absolute;
    top: auto;
    right: auto;
    font-size: 1rem;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    z-index: 10000;
    /* Force a horizontal oval */
    width: 56px; /* long axis */
    height: 32px; /* short axis */
    border-radius: 999px;
    padding: 0;
    /* Keep it centred inside the oval */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-right: 20px;
    /* No movement/animation on hover/focus */
    transform: none !important;
    transition: none !important;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #fullscreen-overlay[b-vzsrr8oqm2] {
        height: 100dvh;
        padding-top: 5%;
        padding-bottom: 15%;
    }

    #fullscreen-image[b-vzsrr8oqm2] {
        margin-bottom: 6%;
        max-height: calc(100dvh - 160px);
    }
}
/* /Shared/Layouts/AuthLayout.razor.rz.scp.css */
.page[b-lrk9v9u94m] {
  display: flex;
  height: 100vh;
}

main[b-lrk9v9u94m] {
  flex: 1;
  overflow-y: hidden;
}

.main-content[b-lrk9v9u94m] {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: auto;
}

.top-row[b-lrk9v9u94m] {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

  .top-row[b-lrk9v9u94m]  a, .top-row .btn-link[b-lrk9v9u94m] {
    white-space: nowrap;
    margin-left: 1.5rem;
  }

  .top-row a:first-child[b-lrk9v9u94m] {
    overflow: hidden;
    text-overflow: ellipsis;
  }

@media (max-width: 640.98px) {
  .top-row:not(.auth)[b-lrk9v9u94m] {
    display: none;
  }

  .top-row.auth[b-lrk9v9u94m] {
    justify-content: space-between;
  }

  .top-row a[b-lrk9v9u94m], .top-row .btn-link[b-lrk9v9u94m] {
    margin-left: 0;
  }
}

@media (min-width: 641px) {
  .page[b-lrk9v9u94m] {
    flex-direction: row;
  }

  .sidebar[b-lrk9v9u94m] {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
  }

  .top-row[b-lrk9v9u94m] {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .top-row[b-lrk9v9u94m], article[b-lrk9v9u94m] {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }
}


.header[b-lrk9v9u94m] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 3px groove;
}


.header-left[b-lrk9v9u94m] {
  display: flex;
  align-items: center;
}

.header-text h1[b-lrk9v9u94m] {
  margin: 0;
  font-size: 24px;
}

.header-text p[b-lrk9v9u94m] {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.header-right[b-lrk9v9u94m] {
  display: flex;
  align-items: center;
}

.header-button[b-lrk9v9u94m] {
  margin-left: 10px;
  padding: 5px 10px;
  color: black;
  border: none;
  cursor: pointer;
}

.footer[b-lrk9v9u94m] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: grey;
  color: white;
  padding: 5px;
  font-size: 0.75rem;
  position: sticky;
  bottom: 0;
  width: 100%;
}

.footer-left[b-lrk9v9u94m] {
  display: flex;
  align-items: center;
}

.footer-left[b-lrk9v9u94m], .footer-center[b-lrk9v9u94m], .footer-right[b-lrk9v9u94m] {
  flex: 1;
}

.footer-title[b-lrk9v9u94m] {
  margin: 0;
  padding-bottom: 5px;
}

.footer-contact[b-lrk9v9u94m] {
  text-decoration: underline;
  margin-bottom: 10px;
  text-align: center;
}

.footer-center p[b-lrk9v9u94m] {
  margin: 5px 0;
  text-align: center;
}

.footer-right[b-lrk9v9u94m] {
  text-align: center;
}

.contact-wrapper[b-lrk9v9u94m] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon[b-lrk9v9u94m] {
  height: 2rem;
  margin-right: 2px;
  margin-left: 30%;
}

.contact-email[b-lrk9v9u94m] {
  margin: 0;
}

.footer-text[b-lrk9v9u94m] {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo[b-lrk9v9u94m] {
  height: 3.25rem;
  margin-right: 10px;
}

.user-icon[b-lrk9v9u94m] {
  height: 3.25rem;
}
/* /Shared/Layouts/MainLayout.razor.rz.scp.css */

*[b-mty1zt6xfj] {
    box-sizing: border-box;
}

body[b-mty1zt6xfj] {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: var(--color-text);
}



a[b-mty1zt6xfj] {
    text-decoration: none;
    color: inherit;
}

/* CSS for section section:dashboard */
.dashboard-container[b-mty1zt6xfj] {
    display: flex;
    min-height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
}

.site-header[b-mty1zt6xfj] {
    position: sticky;
    top: 12px;
    z-index: 2;
    padding: 0;
    margin-top: -8px;
    background-color: #ffffff;
}

.header-container[b-mty1zt6xfj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 64px;
    margin: 0;
    padding: 0 16px;
    background-color: #ffffff;
    border: 3px solid #8c52ff;
    border-radius: 30px;
    box-sizing: border-box;
}

.logo-link[b-mty1zt6xfj] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-img[b-mty1zt6xfj] {
    width: 42px;
    height: 42px;
}

.logo-text[b-mty1zt6xfj] {
    font-family: 'Fredoka One', sans-serif;
    font-size: 18px;
    color: #000000;
    margin-left: 12px;
}

.account-controls[b-mty1zt6xfj] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-icon-link[b-mty1zt6xfj] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

    .profile-icon-link img[b-mty1zt6xfj] {
        width: 38px;
        height: 38px;
    }

.my-account-btn[b-mty1zt6xfj] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 156px;
    height: 40px;
    background-color: #8c52ff;
    border-radius: 24px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    color: #000000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    font-family: 'Quicksand', sans-serif;
}

    .my-account-btn:hover[b-mty1zt6xfj],
    .my-account-btn:focus-visible[b-mty1zt6xfj] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
        background-color: #8c52ff;
        color: #ffffff;
    }

    .my-account-btn:focus-visible[b-mty1zt6xfj] {
        outline: 2px solid rgba(140, 82, 255, 0.35);
        outline-offset: 3px;
    }

.main-content[b-mty1zt6xfj] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    background-color: #ffffff;
}

.site-footer[b-mty1zt6xfj] {
    background-color: #ffffff;
    border-top: 2px solid #c4b1ff;
    padding: 14px 2px;
    padding-bottom: 0;
    font-size: 12px;
    margin-top: auto;
    margin-left: -20px;
    margin-right: -20px;
}

.footer-container[b-mty1zt6xfj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 1920px;
    margin: 0 auto;
}

.copyright[b-mty1zt6xfj] {
    font-size: 13px;
    font-weight: 600;
    color: #8c52ff;
    flex-shrink: 0;
    margin-left: 20px;
    font-family: 'Quicksand', sans-serif;   
}

.footer-description[b-mty1zt6xfj] {
    font-size: 13px;
    font-weight: 400;
    text-align: justify;
    max-width: 804px;
    margin: 0 20px;
    font-family: 'Quicksand', sans-serif;
}

.email-contact[b-mty1zt6xfj] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 20px;
}

@media (max-width: 1200px) {
    .footer-container[b-mty1zt6xfj] {
        flex-direction: column;
        text-align: center;
    }

    .footer-description[b-mty1zt6xfj] {
        text-align: center;
        order: -1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-footer[b-mty1zt6xfj] {
        padding: 20px;
    }

    .dashboard-container[b-mty1zt6xfj] {
        flex-direction: column;
    }

    .sidebar[b-mty1zt6xfj] {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 16px;
        border-right: none;
        border-bottom: 1px solid var(--color-secondary-border);
    }

    .sidebar-header[b-mty1zt6xfj] {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 0;
    }

    .logo[b-mty1zt6xfj] {
        width: 44px;
        height: 40px;
    }

    .main-divider[b-mty1zt6xfj],
    .nav-divider[b-mty1zt6xfj] {
        display: none;
    }

    .sidebar-nav ul[b-mty1zt6xfj] {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .sidebar-nav li[b-mty1zt6xfj] {
        padding: 0;
    }

    .nav-link[b-mty1zt6xfj] {
        padding: 8px;
    }

        .nav-link span[b-mty1zt6xfj] {
            display: none;
        }
}
/* /Shared/MyAccount.razor.rz.scp.css */
.edit-form[b-awoyycwmbn] {
  border: solid;
  border-color: #8C52FF;
  background-color: white;
  font-size: 90%;
  padding: 1% 1%;
  width: auto;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.overlay[b-awoyycwmbn] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.purple-container[b-awoyycwmbn] {
  background-color: #8C52FF;
}
/* /Shared/NavMenu.razor.rz.scp.css */

a[b-qfkbc4dv61] {
    text-decoration: none;
    color: inherit;
    cursor:pointer;
}

ul[b-qfkbc4dv61] {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar[b-qfkbc4dv61] {
    width: 200px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-right: 2px solid #c4b1ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
    overflow: hidden;
}

.sidebar-header[b-qfkbc4dv61] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.logo[b-qfkbc4dv61] {
    width: 84px;
    height: 84px;
}

.brand-name[b-qfkbc4dv61] {
    font-family: 'Fredoka One', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    margin: 0;
}

.main-divider[b-qfkbc4dv61] {
    width: 176px;
    height: 3px;
    border: 0;
    background-color: rgba(140, 82, 255, 0.7);
    border-radius: 999px;
    margin: 0 0 12px 0;
    opacity:inherit;
}

.sidebar-nav[b-qfkbc4dv61] {
    width: 100%;
}

    .sidebar-nav ul[b-qfkbc4dv61] {
        display: flex;
        flex-direction: column;
    }

    .sidebar-nav li[b-qfkbc4dv61] {
        padding: 0 8px; /* (160px - 144px) / 2 */
    }

.nav-link[b-qfkbc4dv61] {
    display: flex;
    align-items: center;
    padding: 10px 11px;
    border-radius: 8px;
    gap: 7px;
    color: #8c52ff;
    font-weight: 700;
    font-size: 10px;
    line-height: 1.75; /* 21px / 12px */
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: 'Quicksand', sans-serif;
    width: 100%;
}

    .nav-link:hover[b-qfkbc4dv61] {
        background-color: #f0e9ff;
        transform: translateY(-2px);
    }

.nav-icon[b-qfkbc4dv61] {
    width: 20px;
    height: 20px;
}

.nav-link.is-active[b-qfkbc4dv61] {
    background-color: #8c52ff;
    color: #ffffff;
}

    .nav-link.is-active .nav-icon[b-qfkbc4dv61] {
        filter: brightness(0) invert(1);
    }

.nav-divider[b-qfkbc4dv61] {
    display: block;
    height: 0.5px;
    background-color: rgba(140, 82, 255, 0.7);
    margin: 12px 12px;
    padding: 0;
    border-radius: 999px;
}

.nav-link span[b-qfkbc4dv61] {
    white-space: nowrap;
}
.site-header[b-qfkbc4dv61] {
    position: sticky;
    top: 12px;
    z-index: 2;
    padding: 0;
    margin-top: -8px;
    background-color: #ffffff;
}
/* /Shared/SignUp.razor.rz.scp.css */
.edit-form[b-1tkhlb8g0c] {
  border: solid;
  border-color: #8C52FF;
  background-color: white;
  font-size: 90%;
  padding: 1% 1%;
  width: auto;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.overlay[b-1tkhlb8g0c] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.purple-container[b-1tkhlb8g0c] {
  background-color: #8C52FF;
}
