/* /CustomControls/Accordion.razor.rz.scp.css */
.faq h2[b-4nschs314h] {
    font-weight: 500;
    font-size: 40px;
}

.accordion[b-4nschs314h] {
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}

    .accordion li[b-4nschs314h] {
        list-style: none;
        width: 100%;
        padding: 5px;
    }

        .accordion li label[b-4nschs314h] {
            display: flex;
            align-items: center;
            padding: 20px;
            font-size: 18px;
            font-weight: 500;
            background: #303030;
            margin-bottom: 2px;
            cursor: pointer;
            position: relative;
            color: white;
        }

label[b-4nschs314h]::after {
    content: '+';
    font-size: 34px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}

input[type=radio][b-4nschs314h] {
    display: none;
}

.accordion .content[b-4nschs314h] {
    background: #5f5f5c;
    text-align: left;
    max-height: 0px;
    overflow: hidden;
    padding: 0px;
}

.accordion input[type=radio]:checked + label + .content[b-4nschs314h] {
    max-height: 600px;
    padding: 30px;
    color: white;
    transition: max-height 1s, padding 0.5s;
}

.accordion input[type=radio]:checked + label[b-4nschs314h]::after {
    transform: rotate(135deg);
}
/* /CustomControls/CircularLoader.razor.rz.scp.css */

*[b-vhwraig6cx] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body[b-vhwraig6cx] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #aea6a6;
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}

[b-vhwraig6cx]::selection {
    background: #003087;
    color: #fff;
}

.load[b-vhwraig6cx] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .load span[b-vhwraig6cx] {
        position: relative;
        width: 250px;
        height: 250px;
        background: #aea6a6;
        border: 6px solid #aea6a6;
        box-shadow: -8px -8px 15px rgba(255,255,255,1), 8px 8px 25px rgba(0,0,0,1.5);
        border-radius: 50%;
        overflow: hidden;
    }

        .load span[b-vhwraig6cx]::before {
            content: '';
            position: absolute;
            inset: 40px;
            background: #aea6a6;
            border-radius: 50%;
            border: 2px solid #aea6a6;
            box-shadow: -8px -8px 15px rgba(255,255,255,1), 8px 8px 25px rgba(0,0,0,0.25), inset 3px 3px 10px rgba(0,0,0,0.1), inset -1px -1px 15px rgba(255,255,255,1);
            z-index: 1;
        }

        .load span i[b-vhwraig6cx] {
            position: absolute;
            inset: 0;
            background: linear-gradient(#003087, #03fbde, #fc02f4);
            border-radius: 50%;
            filter: blur(5px);
            animation: animate-b-vhwraig6cx 1s linear infinite;
        }

@keyframes animate-b-vhwraig6cx {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text[b-vhwraig6cx] {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    animation: animateText-b-vhwraig6cx 10s linear infinite;
}

    .text b[b-vhwraig6cx] {
        position: absolute;
        left: 50%;
        display: block;
        transform-origin: 0 160px;
        font-weight: normal;
        font-size: 1.3em;
    }

@keyframes animateText-b-vhwraig6cx {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* /CustomControls/CurvedText.razor.rz.scp.css */
.curved-text[b-a5tucdi2ou] {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    font-size: 32px;
}

.curved-text span[b-a5tucdi2ou] {
    min-width: 0.5em;
    text-align: center;
    padding: 30px;
    margin: 0px;
}
/* /CustomControls/DatePicker.razor.rz.scp.css */

td[b-la03i8c8fv] {
    padding: 5px;
}

tbody td:hover:not([disabled])[b-la03i8c8fv] {
    background-color: whitesmoke;
    border-radius: 50%;
}

tbody td[disabled][b-la03i8c8fv] {
    background-color: dimgray;
}

.containerDiv[b-la03i8c8fv] {
    position: absolute;
    background-color: lightgray;
    border: 1px solid grey;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 1px 1px 10px #FF9933, 1px 1px 20px #FF9933;
    /*animation: anime 1s linear infinite;*/
}

.formattedDateLabel[b-la03i8c8fv] {
    text-align: center;
    background-color: #FF9933;
    height: 40px;
    color: white;
}

@keyframes anime-b-la03i8c8fv {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(25deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

/* /CustomControls/Dropdown.razor.rz.scp.css */
ul[b-jbdid88xrz] {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: white;
    position: absolute;
    border: 2px solid darkgrey;
    border-radius: 10px;
    z-index: 1000;
}

ul[b-jbdid88xrz], input.ddlInput[b-jbdid88xrz] {
    width: 100% !important;
}

.dropdown-item-single:hover[b-jbdid88xrz] {
    background-color: #f1f1f1;
}
/* /CustomControls/PendulumLoader.razor.rz.scp.css */
.loader[b-6ivad9w10m] {
    border: 3px solid #d6336c;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate-b-6ivad9w10m 2s cubic-bezier(0.26, 1.36, 0.74,-0.29) infinite;
}

#loader2[b-6ivad9w10m] {
    border: 3px solid #3bc9db;
    width: 220px;
    height: 220px;
    position: relative;
    top: -216px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate2-b-6ivad9w10m 2s cubic-bezier(0.26, 1.36, 0.74,-0.29) infinite;
}

#loader3[b-6ivad9w10m] {
    border: 3px solid #d6336c;
    width: 240px;
    height: 240px;
    position: relative;
    top: -452px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate-b-6ivad9w10m 2s cubic-bezier(0.26, 1.36, 0.74,-0.29) infinite;
}

#loader4[b-6ivad9w10m] {
    border: 3px solid #3bc9db;
    width: 260px;
    height: 260px;
    position: relative;
    top: -708px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate2-b-6ivad9w10m 2s cubic-bezier(0.26, 1.36, 0.74,-0.29) infinite;
}

@keyframes rotate-b-6ivad9w10m {
    0% {
        transform: rotateZ(-360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}

@keyframes rotate2-b-6ivad9w10m {
    0% {
        transform: rotateZ(360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}

#text[b-6ivad9w10m] {
    color: black;
    font-family: Arial;
    font-size: 20px;
    position: relative !important;
    bottom: 850px;
    left: 65px;
}

.waviy[b-6ivad9w10m] {
    position: relative;
}

    .waviy span[b-6ivad9w10m] {
        position: relative;
        display: inline-block;
        font-size: 40px;
        color: #fff;
        text-transform: uppercase;
        animation: flip-b-6ivad9w10m 2s infinite;
        /*animation-delay: calc(.2s * var(--i))*/
    }

@keyframes flip-b-6ivad9w10m {
    0%,50% {
        transform: rotateY(360deg)
    }
}
/* /CustomControls/Prompt.razor.rz.scp.css */
div.card[b-udr95g2m5m] {
    width: 500px;
    position: absolute;
    border: 1px solid red;
    text-align: center;
    margin-left: 15%;
    background-color:seashell
}

h3.card-title[b-udr95g2m5m] {
    color: indianred
}

p.card-text[b-udr95g2m5m] {
    text-align: left;
    margin-bottom:0px;
}

button.submit[b-udr95g2m5m] {
    text-align: center;
    margin-top: 10px;
    width:120px;
    display:revert;
}

button.close[b-udr95g2m5m] {
    text-align: center;
    margin-top: 10px;
    width: 120px;
    display: revert;
}
/* /Pages/Attendance/Attendance.razor.rz.scp.css */
.attSectionStyle[b-v4pwwg4rxp] {
    border: 1px solid lightgrey;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.attHeaderRowStyle[b-v4pwwg4rxp] {
    border: 1px solid gray;
    border-radius: 10px;
    margin-bottom: 5px;
}

.attBodyRowStyle[b-v4pwwg4rxp] {
    border: 1px solid red;
    border-radius: 10px;
    margin-bottom: 2px;
}

.attBodyRowStyle:hover[b-v4pwwg4rxp] {
    background-color: lightgrey;
}

input[type=button][value=Confirm][b-v4pwwg4rxp] {
    margin-left: 125px;
}
/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */
.login-page-wrapper[b-5ovs0lab2y] {
    background-color: #F8D7D7; /* Premium Light Indian Red background */
    min-height: calc(100vh - 56px); /* Fill the vertical space below the marquee */
    margin: -24px -24px; /* Bleed to the edges */
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.login-form[b-5ovs0lab2y] {
    width: 100%;
    max-width: 960px; /* Centered, clean layout width */
}

.toast-container[b-5ovs0lab2y] {
    margin-bottom: 40px;
}

.login-box-left[b-5ovs0lab2y] {
    background-color: #FF9933;
    border: 3px solid green;
    padding: 40px 24px;
    border-radius: 8px;
    color: white;
}

.login-box-left h3[b-5ovs0lab2y], .login-box-left p.text-muted[b-5ovs0lab2y] {
    color: white !important;
}

.forgot-link[b-5ovs0lab2y] {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover[b-5ovs0lab2y] {
    text-decoration: underline;
    color: #e6e6e6;
}
/* /Pages/Auth/Login.razor.rz.scp.css */
.login-page-wrapper[b-1bz52l071v] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.25)), url('../../Images/school_login_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 56px); /* Bleeds nicely under the marquee */
    margin: -24px -24px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

/* Toast override */
.toast-container[b-1bz52l071v] {
    position: absolute;
    top: 20px;
    z-index: 1000;
}

/* Header Section */
.header-container[b-1bz52l071v] {
    text-align: center;
    margin-bottom: 12px;
    margin-top: 0;
    animation: fadeInDown-b-1bz52l071v 0.8s ease-out;
}

.logo-wrapper[b-1bz52l071v] {
    display: inline-flex;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.25);
    margin-bottom: 6px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo-wrapper:hover[b-1bz52l071v] {
    transform: rotate(0deg) scale(1.05);
}

.logo-cap[b-1bz52l071v] {
    width: 32px;
    height: 32px;
}

.system-title[b-1bz52l071v] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 0;
    letter-spacing: -0.5px;
}

.system-subtitle[b-1bz52l071v] {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
    margin: 2px 0 0 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Main Layout Grid */
.main-layout-container[b-1bz52l071v] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    align-items: start;
    animation: fadeInUp-b-1bz52l071v 0.8s ease-out;
}

/* Left Login Card */
.login-card-container[b-1bz52l071v] {
    display: flex;
    justify-content: flex-end;
}

.login-card[b-1bz52l071v] {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(30, 58, 138, 0.04);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover[b-1bz52l071v] {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(30, 58, 138, 0.06);
}

.card-title[b-1bz52l071v] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.card-subtitle[b-1bz52l071v] {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 18px 0;
}

/* Input Fields Styling */
.login-form-fields[b-1bz52l071v] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.input-group-wrapper[b-1bz52l071v] {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    display: flex;
    align-items: center;
    padding: 0 14px;
    min-height: 44px;
}

.input-group-wrapper:focus-within[b-1bz52l071v] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: white;
}

.input-icon[b-1bz52l071v] {
    color: #64748b;
    display: inline-flex;
    margin-right: 10px;
    flex-shrink: 0;
}

.input-icon svg[b-1bz52l071v] {
    width: 18px;
    height: 18px;
}

.modern-input[b-1bz52l071v], .role-select[b-1bz52l071v] {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 0.92rem;
    color: #1e293b;
    padding: 10px 0 !important;
    width: 100%;
    font-weight: 500;
    box-shadow: none !important;
}

.modern-input[b-1bz52l071v]::placeholder {
    color: #94a3b8;
}

/* Role Selector Select Box override */
.role-select[b-1bz52l071v] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Dropdown Overrides to Match Aesthetic */
.custom-dropdown-container[b-1bz52l071v] {
    width: 100%;
    text-align: left;
}

.custom-dropdown-container[b-1bz52l071v]  select,
.custom-dropdown-container[b-1bz52l071v]  input,
.custom-dropdown-container[b-1bz52l071v]  button,
.custom-dropdown-container[b-1bz52l071v]  .dropdown-box {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    color: #1e293b !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    width: 100% !important;
    min-height: auto !important;
}

/* Password eye button and Inline Link */
.password-group[b-1bz52l071v] {
    padding-right: 44px; /* Leave space for eye button only */
}

.password-toggle-btn[b-1bz52l071v] {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    padding: 0;
    z-index: 10;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover[b-1bz52l071v] {
    color: #3b82f6;
}

.password-toggle-btn svg[b-1bz52l071v] {
    width: 18px;
    height: 18px;
}

/* Remember Me & Forgot Password Row */
.remember-row[b-1bz52l071v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
    width: 100%;
}

.forgot-password-link[b-1bz52l071v] {
    font-size: 0.84rem;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password-link:hover[b-1bz52l071v] {
    color: #1d4ed8;
    text-decoration: underline;
}

.remember-label[b-1bz52l071v] {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 600;
    user-select: none;
}

.remember-checkbox[b-1bz52l071v] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-visual[b-1bz52l071v] {
    height: 18px;
    width: 18px;
    background-color: #e2e8f0;
    border-radius: 5px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.15s ease;
    border: 2px solid transparent;
}

.remember-label:hover .checkbox-visual[b-1bz52l071v] {
    background-color: #cbd5e1;
    transform: scale(1.05);
}

.remember-checkbox:checked ~ .checkbox-visual[b-1bz52l071v] {
    background-color: #3b82f6;
}

.remember-checkbox:checked ~ .checkbox-visual[b-1bz52l071v]::after {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-0.5px, -0.5px);
}

/* Submit Button */
.btn-login-submit[b-1bz52l071v] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    margin-top: 4px;
}

.btn-login-submit:hover[b-1bz52l071v] {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Social Buttons divider */
.social-divider[b-1bz52l071v] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 12px 0 8px 0;
}

.social-divider[b-1bz52l071v]::before,
.social-divider[b-1bz52l071v]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.social-divider span[b-1bz52l071v] {
    padding: 0 8px;
}

.social-btn-container[b-1bz52l071v] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.social-pill-btn[b-1bz52l071v] {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.social-pill-btn:hover[b-1bz52l071v] {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.social-pill-btn svg[b-1bz52l071v] {
    width: 18px;
    height: 18px;
}

/* Create Account Row */
.signup-row[b-1bz52l071v] {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 500;
}

.create-account-link[b-1bz52l071v] {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.create-account-link:hover[b-1bz52l071v] {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Bulletin Board */
.bulletin-board[b-1bz52l071v] {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bulletin-header[b-1bz52l071v] {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.bulletin-header svg[b-1bz52l071v] {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.bulletin-header h3[b-1bz52l071v] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.bulletin-body[b-1bz52l071v] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bulletin-date-stamp[b-1bz52l071v] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 16px;
    align-self: flex-start;
}

.bulletin-date-stamp svg[b-1bz52l071v] {
    width: 14px;
    height: 14px;
}

/* Bulletin Mini Cards */
.bulletin-card[b-1bz52l071v] {
    background-color: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.2s ease;
}

.bulletin-card:hover[b-1bz52l071v] {
    transform: scale(1.01);
}

.bulletin-section-title[b-1bz52l071v] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
}

.inspiration-card[b-1bz52l071v] {
    border-left: 4px solid #3b82f6;
}

.quote-text[b-1bz52l071v] {
    font-style: italic;
    font-size: 0.88rem;
    color: #334155;
    margin: 0 0 4px 0;
    line-height: 1.35;
    font-weight: 500;
}

.quote-author[b-1bz52l071v] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    text-align: right;
}

.word-card[b-1bz52l071v] {
    border-left: 4px solid #f97316;
}

.word-flex[b-1bz52l071v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.word-text[b-1bz52l071v] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.word-search-btn[b-1bz52l071v] {
    color: #f97316;
    transition: transform 0.2s ease;
    display: inline-flex;
}

.word-search-btn:hover[b-1bz52l071v] {
    transform: scale(1.1);
}

.word-search-btn svg[b-1bz52l071v] {
    width: 18px;
    height: 18px;
}

.news-card[b-1bz52l071v] {
    border-left: 4px solid #10b981;
}

.news-list[b-1bz52l071v] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-item[b-1bz52l071v] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    color: #334155;
    transition: color 0.2s ease;
}

.news-item:hover[b-1bz52l071v] {
    color: #10b981;
}

.news-bullet[b-1bz52l071v] {
    font-size: 0.9rem;
    line-height: 1;
}

.news-title[b-1bz52l071v] {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.bulletin-footer[b-1bz52l071v] {
    border-top: 1px solid #f1f5f9;
    padding-top: 6px;
    margin-top: 6px;
    text-align: right;
}

.more-link[b-1bz52l071v] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.more-link:hover[b-1bz52l071v] {
    transform: translateX(2px);
}

/* Quick Access Links inside Bulletin Board */
.quick-links-card[b-1bz52l071v] {
    border-left: 4px solid #3b82f6;
}

.quick-links-grid[b-1bz52l071v] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 6px;
}

.quick-link-item[b-1bz52l071v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 8px 4px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.quick-link-item:hover[b-1bz52l071v] {
    transform: translateY(-2px);
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.quick-link-icon[b-1bz52l071v] {
    display: inline-flex;
    padding: 6px;
    border-radius: 8px;
    color: white;
    margin-bottom: 4px;
}

.quick-link-item.student-records .quick-link-icon[b-1bz52l071v] {
    background-color: #3b82f6;
}

.quick-link-item.class-schedules .quick-link-icon[b-1bz52l071v] {
    background-color: #f97316;
}

.quick-link-item.attendance-tracking .quick-link-icon[b-1bz52l071v] {
    background-color: #10b981;
}

.quick-link-icon svg[b-1bz52l071v] {
    width: 16px;
    height: 16px;
}

.quick-link-label[b-1bz52l071v] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
}

/* Animations */
@keyframes fadeInDown-b-1bz52l071v {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-1bz52l071v {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Height-based media queries to eliminate scrolling on shorter viewports */
@media (max-height: 720px) {
    .login-page-wrapper[b-1bz52l071v] {
        padding: 8px 16px;
    }
    .header-container[b-1bz52l071v] {
        margin-bottom: 6px;
    }
    .logo-wrapper[b-1bz52l071v] {
        padding: 5px;
        margin-bottom: 4px;
        border-radius: 10px;
    }
    .logo-cap[b-1bz52l071v] {
        width: 24px;
        height: 24px;
    }
    .system-title[b-1bz52l071v] {
        font-size: 1.4rem;
    }
    .system-subtitle[b-1bz52l071v] {
        font-size: 0.8rem;
        margin: 0;
    }
    .main-layout-container[b-1bz52l071v] {
        gap: 16px;
    }
    .login-card[b-1bz52l071v] {
        padding: 16px 20px;
        border-radius: 16px;
    }
    .card-title[b-1bz52l071v] {
        font-size: 1.35rem;
    }
    .card-subtitle[b-1bz52l071v] {
        margin-bottom: 12px;
        font-size: 0.82rem;
    }
    .login-form-fields[b-1bz52l071v] {
        gap: 8px;
    }
    .input-group-wrapper[b-1bz52l071v] {
        min-height: 38px;
        border-radius: 10px;
        padding: 0 10px;
    }
    .input-icon svg[b-1bz52l071v] {
        width: 16px;
        height: 16px;
    }
    .modern-input[b-1bz52l071v], .role-select[b-1bz52l071v] {
        font-size: 0.85rem;
        padding: 8px 0 !important;
    }
    .password-group[b-1bz52l071v] {
        padding-right: 36px;
    }
    .forgot-password-link[b-1bz52l071v] {
        font-size: 0.78rem;
    }
    .password-toggle-btn[b-1bz52l071v] {
        right: 10px;
    }
    .password-toggle-btn svg[b-1bz52l071v] {
        width: 16px;
        height: 16px;
    }
    .remember-label[b-1bz52l071v] {
        font-size: 0.8rem;
    }
    .checkbox-visual[b-1bz52l071v] {
        height: 16px;
        width: 16px;
        margin-right: 6px;
    }
    .remember-checkbox:checked ~ .checkbox-visual[b-1bz52l071v]::after {
        width: 3px;
        height: 6px;
    }
    .btn-login-submit[b-1bz52l071v] {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    .social-divider[b-1bz52l071v] {
        margin: 8px 0 6px 0;
        font-size: 0.72rem;
    }
    .social-btn-container[b-1bz52l071v] {
        gap: 8px;
        margin-bottom: 8px;
    }
    .social-pill-btn[b-1bz52l071v] {
        padding: 6px;
        border-radius: 8px;
    }
    .social-pill-btn svg[b-1bz52l071v] {
        width: 16px;
        height: 16px;
    }
    .signup-row[b-1bz52l071v] {
        font-size: 0.8rem;
    }
    .bulletin-board[b-1bz52l071v] {
        padding: 16px;
        border-radius: 16px;
    }
    .bulletin-header[b-1bz52l071v] {
        padding-bottom: 6px;
        margin-bottom: 8px;
    }
    .bulletin-header h3[b-1bz52l071v] {
        font-size: 1rem;
    }
    .bulletin-header svg[b-1bz52l071v] {
        width: 16px;
        height: 16px;
    }
    .bulletin-date-stamp[b-1bz52l071v] {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
    .bulletin-card[b-1bz52l071v] {
        padding: 8px 12px;
        border-radius: 10px;
    }
    .quote-text[b-1bz52l071v] {
        font-size: 0.8rem;
    }
    .quote-author[b-1bz52l071v] {
        font-size: 0.75rem;
    }
    .word-text[b-1bz52l071v] {
        font-size: 1rem;
    }
    .word-search-btn svg[b-1bz52l071v] {
        width: 16px;
        height: 16px;
    }
    .news-title[b-1bz52l071v] {
        font-size: 0.78rem;
    }
    .news-item:nth-child(n+3)[b-1bz52l071v] {
        display: none; /* Hide 3rd news item on shorter viewports */
    }
    .more-link[b-1bz52l071v] {
        font-size: 0.72rem;
    }
}

/* Height-based query for ultra compact display (like developers tools open) */
@media (max-height: 580px) {
    .login-page-wrapper[b-1bz52l071v] {
        padding: 4px 12px;
    }
    .header-container[b-1bz52l071v] {
        display: none; /* Hide title entirely to save critical space */
    }
    .main-layout-container[b-1bz52l071v] {
        gap: 12px;
    }
    .login-card[b-1bz52l071v] {
        padding: 12px 16px;
    }
    .card-title[b-1bz52l071v] {
        font-size: 1.25rem;
    }
    .card-subtitle[b-1bz52l071v] {
        margin-bottom: 8px;
    }
    .bulletin-board[b-1bz52l071v] {
        padding: 12px;
    }
    .word-card[b-1bz52l071v] {
        display: none; /* Hide Word of Day to prevent scrolling */
    }
    .news-item:nth-child(n+2)[b-1bz52l071v] {
        display: none; /* Limit to 1 news item */
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .main-layout-container[b-1bz52l071v] {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 460px;
    }
    .login-card-container[b-1bz52l071v] {
        justify-content: center;
    }
}

/* /Pages/Dashboard/Dashboard.razor.rz.scp.css */
/* /Pages/Fees/ClassLevelFees.razor.rz.scp.css */
.lastColMargin[b-kuominrfqw] {
    margin-right: 10px;
}
/* /Pages/Fees/FeeCard.razor.rz.scp.css */
.row[b-ypa96slxvi] {
    margin-top: 10px;
}
/* /Pages/Fees/Scholarship.razor.rz.scp.css */

table.table thead td[b-3qgkccps1a] {
    vertical-align: middle;
}

.alignCenter[b-3qgkccps1a] {
    text-align: center;
    vertical-align: middle;
}
/* /Pages/Students/Student.razor.rz.scp.css */
.col-md-4[b-3uzz21x4sc] {
    margin-top: 10px;
}
/* /Pages/Students/StudentList.razor.rz.scp.css */
#studentListing span[b-58tptmnb41] {
    cursor: pointer;
    color: azure;
}
.scalable-on-hover:hover[b-58tptmnb41] {
    transform: scale(7);
    transition: transform 0.3s ease-in-out;
}
/* /Pages/Transport/Route.razor.rz.scp.css */
details[b-6wso4bi86b] {
margin-bottom:10px;
}
summary[b-6wso4bi86b] {
    background-color: red
}
details:first-child[b-6wso4bi86b] {
    
}

[b-6wso4bi86b]::marker {
    color: white;
    margin-left:1px;
}

summary table[b-6wso4bi86b] {
    color: white;
    width: 95%;
    margin-left: 40px;
    margin-top: -25px;
}

.deleteButtonStyle[b-6wso4bi86b] {
    border: none;
    color: darkorange;
}

.hide[b-6wso4bi86b] {
    display: none;
}

.show[b-6wso4bi86b] {
    display: inherit;
}

.submitButton[b-6wso4bi86b] {
    margin-top: 15px;
}
.legend[b-6wso4bi86b] {
    margin-top: -14px;
    font-size: 18px;
    border: 2px solid red;
    width: 180px;
    background-color: white;
    text-align: center;
    color: red;
}

.legendParent[b-6wso4bi86b] {
    background-color: #eeeeee;
    border: 2px solid indianred;
    margin-top: 20px;
    padding-left: 10px;
}

    .legendParent:hover[b-6wso4bi86b] {
        border: 2px solid red;
    }

/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-ayz4wh64pm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ayz4wh64pm] {
    flex: 1;
}

.sidebar[b-ayz4wh64pm] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ayz4wh64pm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ayz4wh64pm]  a, .top-row[b-ayz4wh64pm]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ayz4wh64pm]  a:hover, .top-row[b-ayz4wh64pm]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ayz4wh64pm]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-ayz4wh64pm] {
        display: none;
    }

    .top-row.auth[b-ayz4wh64pm] {
        justify-content: space-between;
    }

    .top-row[b-ayz4wh64pm]  a, .top-row[b-ayz4wh64pm]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ayz4wh64pm] {
        flex-direction: row;
    }

    .sidebar[b-ayz4wh64pm] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ayz4wh64pm] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ayz4wh64pm] {
        justify-content: space-between;
    }

    .top-row[b-ayz4wh64pm]  a, .top-row[b-ayz4wh64pm]  .btn-link {
        margin-left: 1.5rem;
    }

    .content[b-ayz4wh64pm] {
        padding-top: 1.1rem;
    }
}

marquee span[b-ayz4wh64pm] {
    margin-left: 5px;
    margin-right: 5px;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lujc0vk9kh] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus[b-lujc0vk9kh] {
    text-decoration: none;
    box-shadow: 0 0 0 0.25rem;
}

.collapse[b-lujc0vk9kh] {
    /* Hidden by default on mobile/narrow screens */
    display: none;
}

.nav-item[b-lujc0vk9kh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-lujc0vk9kh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lujc0vk9kh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-lujc0vk9kh]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-lujc0vk9kh]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-lujc0vk9kh]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-lujc0vk9kh] {
        display: none;
    }

    .collapse[b-lujc0vk9kh] {
        /* Always show the menu on wide screens */
        display: block;
    }
}

.nav-item[b-lujc0vk9kh]  a span {
    margin-right: 12px !important;
}

.navIcon[b-lujc0vk9kh] {
    width: 2rem;
    font-size: 24px;
    vertical-align: text-top;
    font-weight: 400;
    line-height: inherit;
    margin-right: 12px !important;
}
