body {
    background: #f8f9fa;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #202124;
}

.widget .panel-body {
    padding: 0px;
}

.widget .list-group {
    margin-bottom: 0;
}

.widget .panel-title {
    display: inline
}

.widget .label-info {
    float: right;
}

.widget li.list-group-item {
    border-radius: 0;
    border: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.widget li.list-group-item:hover {
    background-color: rgba(86, 61, 124, .1);
}

.widget .mic-info {
    color: #666666;
    font-size: 11px;
}

.widget .action {
    margin-top: 5px;
}

.widget .comment-text {
    font-size: 14px;
}

.widget .btn-block {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}


/* Dropdown menu styles */

.navbar-nav>li>.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
}

.navbar-nav>li>.dropdown-menu a {
    color: #202124;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.navbar-nav>li>.dropdown-menu a:hover {
    background-color: #f1f3f4;
    color: #202124;
}

.navbar-nav>li>.dropdown-menu .dropdown-divider {
    border-color: #dadce0;
}

table {
    width: 100%;
}

td,
th {
    text-align: center;
}

button.btn.marked::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
}

button.btn.unmarked::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00d";
}

.marked::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
}

.unmarked::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00d";
}

.account-settings .user-profile {
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    text-align: center;
}

.account-settings .user-profile .user-avatar {
    margin: 0 0 1rem 0;
}

.account-settings .user-profile .user-avatar img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.account-settings .user-profile h5.user-name {
    margin: 0 0 0.5rem 0;
}

.account-settings .user-profile h6.user-email {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9fa8b9;
}

.account-settings .about {
    margin: 2rem 0 0 0;
    text-align: center;
}

.account-settings .about h5 {
    margin: 0 0 15px 0;
    color: #007ae1;
}

.account-settings .about p {
    font-size: 0.825rem;
}

/* =============================================
   LIME LOGIN — Clean Professional Light Theme
   ============================================= */

.auth-body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ---- Login Page Container ---- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 2rem 1rem;
}

/* ---- Login Card ---- */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    animation: loginFadeIn 0.4s ease-out;
}

@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Brand Area ---- */
.login-brand {
    text-align: center;
    margin-bottom: 0.75rem;
}

.login-brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
}

/* ---- Title ---- */
.login-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000;
    text-align: center;
    font-size: 1.5rem;
    margin: 0.5rem 0 0.25rem;
}

/* ---- Subtitle ---- */
.login-subtitle {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    color: #666666;
    text-align: center;
    font-size: 0.9rem;
    margin: 0 0 1.75rem;
}

/* ---- Flash Messages ---- */
.flash-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    border: 1px solid;
    position: relative;
    font-family: 'Open Sans', Arial, sans-serif;
}

.flash-danger,
.flash-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.flash-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.flash-info {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1;
}

.flash-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.flash-alert-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.5;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 2px;
    line-height: 1;
    flex-shrink: 0;
}

.flash-alert-close:hover {
    opacity: 1;
}

/* ---- Form Layout ---- */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
}

/* ---- Inputs ---- */
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9rem;
    color: #000000;
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: #aaaaaa;
}

.form-input:focus {
    border-color: #C8F348;
    box-shadow: 0 0 0 3px rgba(200, 243, 72, 0.25);
}

.form-input.is-invalid,
.form-group .has-error .form-input {
    border-color: #dc3545;
}

/* ---- Password Input (extra padding for eye toggle) ---- */
.input-wrap--password .form-input {
    padding-right: 2.75rem;
}

/* ---- Eye Toggle ---- */
.eye-toggle {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999999;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.eye-toggle:hover {
    color: #333333;
}

/* ---- Field Errors ---- */
.field-error {
    font-size: 0.78rem;
    color: #dc3545;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-top: 0.15rem;
}

/* ---- Form Meta (Remember + Forgot) ---- */
.form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333333;
    font-weight: 400;
    margin: 0;
}

.remember-checkbox {
    accent-color: #C8F348;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ---- Login Link (Forgot Password) ---- */
.login-link {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #F298FF;
}

/* ---- Primary Login Button ---- */
.btn-login {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    background: #C8F348;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-login:hover {
    background: #b8e038;
    box-shadow: 0 4px 16px rgba(242, 152, 255, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-login .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Spinner */
.spin-icon {
    animation: loginSpin 0.8s linear infinite;
}

@keyframes loginSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
    .login-page {
        padding: 1rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }

    .login-title {
        font-size: 1.3rem;
    }
}

/* =============================================
   AUTH PAGE — LIME Clean Light Theme (Reset Pages)
   ============================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 2rem 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 0.75rem;
    border: none;
}

.auth-logo h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.auth-logo p {
    color: #666666;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.auth-card .form-label {
    color: #333333 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    font-family: 'Open Sans', Arial, sans-serif;
}

.auth-card .form-control {
    background: #ffffff;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    color: #000000;
    padding: 0.7rem 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-card .form-control::placeholder {
    color: #aaaaaa;
}

.auth-card .form-control:focus {
    border-color: #C8F348;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200, 243, 72, 0.25);
    color: #000000;
}

.auth-card .form-control.is-invalid {
    border-color: #dc3545;
}

.auth-card .btn-primary {
    background: #C8F348;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.auth-card .btn-primary:hover {
    background: #b8e038;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(242, 152, 255, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.auth-card .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.auth-card .invalid-feedback {
    color: #dc3545;
    font-size: 0.78rem;
}

.auth-card a {
    color: #333333;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-card a:hover {
    color: #F298FF;
    text-decoration: none;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #999999;
    font-size: 0.75rem;
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    z-index: 1;
}

/* Flash messages in reset pages */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    animation: flashIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid;
    font-family: 'Open Sans', Arial, sans-serif;
}

.auth-alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.auth-alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.auth-alert-info {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1;
}

.auth-alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.alert-icon {
    flex-shrink: 0;
}

.auth-alert-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    opacity: 0.5;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 4px;
}

.auth-alert-close:hover {
    opacity: 1;
}

.form-control {
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #ffffff;
    color: #202124;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: #C8F348;
    box-shadow: 0 0 0 3px rgba(200, 243, 72, 0.15);
}

.card {
    background: #ffffff;
    border-radius: 12px;
    border: none;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Admin page wrapper — reusable across all admin templates */
.admin-page {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000000;
}

.admin-page .page-header {
    margin-bottom: 1.75rem;
}

.admin-page .page-header h2 {
    font-weight: 300;
    font-size: 1.85rem;
    color: #000000;
    margin-bottom: 0.15rem;
}

.admin-page .page-header .subtitle {
    font-size: 0.9rem;
    color: #555555;
    font-weight: 400;
}

.admin-page .section-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s ease;
}

.admin-page .section-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.admin-page .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.admin-page .section-title {
    font-weight: 500;
    font-size: 1.15rem;
    color: #000000;
    margin: 0;
}

/* Clean table styling for admin pages */
.admin-page table {
    table-layout: auto !important;
    border-collapse: collapse;
}

.admin-page table thead th {
    background: #f5f5f5 !important;
    color: #555555 !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e0e0 !important;
    border-top: none !important;
    padding: 0.75rem 0.75rem !important;
    text-align: left !important;
    white-space: nowrap;
}

.admin-page table tbody td {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid #eeeeee !important;
    border-top: none !important;
    padding: 0.7rem 0.75rem !important;
    text-align: left !important;
    width: auto !important;
    vertical-align: middle;
    transition: background-color 0.15s ease;
}

.admin-page table tbody tr:hover td {
    background-color: rgba(200, 243, 72, 0.06) !important;
}

/* Admin action buttons */
.admin-page .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0;
    line-height: 1;
}

/* Admin button styles */
.admin-page .btn-admin-primary {
    background: #C8F348;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.admin-page .btn-admin-primary:hover {
    background: #a8d94a;
    color: #000000;
    box-shadow: 0 2px 6px rgba(200, 243, 72, 0.3);
}

.admin-page .btn-admin-warning {
    background: #f9ab00;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.admin-page .btn-admin-warning:hover {
    background: #e09600;
    color: #000000;
}

.admin-page .btn-admin-danger {
    background: #ea4335;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.admin-page .btn-admin-danger:hover {
    background: #c5221f;
    color: #ffffff;
}

/* ============================================================
   User Availability — Mobile-First Card Layout
   ============================================================ */

/* Week tab pills - override nav-link defaults */
.avail-week-tabs {
    border: none;
}

.avail-week-tabs .nav-item {
    flex: 1;
}

.avail-week-tab.nav-link {
    font-size: 0.9rem;
    line-height: 1.3;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #C8F348;
    color: #000000;
    background: transparent;
}

.avail-week-tab.nav-link.active {
    background-color: #C8F348;
    color: #000000;
    border-color: #C8F348;
    box-shadow: 0 2px 8px rgba(200, 243, 72, 0.3);
}

.avail-week-tab.nav-link:not(.active):hover {
    background-color: rgba(200, 243, 72, 0.08);
}

.avail-week-tab small {
    opacity: 0.8;
    font-size: 0.75rem;
}

/* Toggle button (btn-check) — unchecked state */
.avail-slot-check+.btn {
    min-height: 44px;
    background: rgba(200, 243, 72, 0.08);
    color: #555555;
    border: 2px solid #e0e0e0;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Toggle button — checked (available) state */
.avail-slot-check:checked+.btn {
    background: #34a853;
    color: #fff;
    border-color: #2d9249;
    box-shadow: 0 1px 4px rgba(52, 168, 83, 0.3);
}

/* Hover for non-touch */
@media (hover: hover) {
    .avail-slot-check+.btn:hover {
        transform: scale(1.03);
    }
}

/* Focus-visible for keyboard a11y */
.avail-slot-check:focus-visible+.btn {
    outline: 2px solid #C8F348;
    outline-offset: 2px;
}

/* Save button sticky feel */
#save-availability-btn {
    min-height: 48px;
    font-size: 1rem;
    font-weight: 500;
}

/* Holiday indicator in availability grids (kept for admin pages) */
.avail-holiday {
    background-color: rgba(200, 243, 72, 0.12) !important;
    text-align: center;
}

.avail-holiday .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Admin availability page — legacy table support */
.admin-page .avail-table td {
    white-space: nowrap;
    vertical-align: middle;
}

.avail-slot-labels {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.avail-slot-labels span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #555555;
    background: rgba(200, 243, 72, 0.08);
    border-radius: 4px;
    text-transform: uppercase;
}

/* Admin toggle label (legacy) */
.avail-toggle-input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.avail-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    background: #e8e8e8;
    color: #888;
    border: 2px solid #d0d0d0;
    transition: all 0.15s ease;
    margin: 1px;
    user-select: none;
}

.avail-toggle-input:checked+.avail-toggle-label {
    background: #34a853;
    color: #fff;
    border-color: #2d9249;
}

/* Admin availability card/accordion layout (legacy) */
.avail-card .card-header {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
}

.avail-day-row {
    padding: 0.5rem 0.75rem;
}

.avail-day-label {
    min-width: 40px;
    font-size: 0.9rem;
}

.avail-summary-badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.avail-save-btn {
    min-height: 44px;
    padding: 0.5rem 1rem;
}

.avail-day-row.border-bottom {
    border-color: #eee !important;
}

/* Toast container */
#avail-toast.border-success .toast-header {
    background: #e8f5e9;
    color: #1b5e20;
}

#avail-toast.border-danger .toast-header {
    background: #fce4ec;
    color: #b71c1c;
}

#avail-toast.border-info .toast-header {
    background: #e1f5fe;
    color: #01579b;
}

/* Mobile overrides */
@media (max-width: 767.98px) {
    .admin-page .avail-table .avail-toggle-label {
        min-width: 34px;
        min-height: 34px;
        font-size: 0.7rem;
        border-radius: 6px;
        margin: 0;
    }

    .avail-slot-labels span {
        width: 22px;
        height: 16px;
        font-size: 0.55rem;
    }

    .avail-slot-labels {
        gap: 2px;
    }
}

/* Search input sticky bar */
#avail-search:focus {
    border-color: #C8F348;
    box-shadow: 0 0 0 3px rgba(200, 243, 72, 0.15);
}

/* Manager role badge */
.admin-page .role-manager {
    background: rgba(249, 171, 0, 0.1);
    color: #e09600;
}

/* Disabled users section */
#disabled-users-section .table td {
    opacity: 0.7;
}

#disabled-chevron {
    transition: transform 0.3s ease;
}

.role-disabled {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* ============================================================
   Holiday Calendar Styles
   ============================================================ */

.holiday-calendar {
    margin-top: 0.5rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
}

.calendar-header {
    background: #000000;
    color: #ffffff;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    min-height: 100px;
    padding: 5px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: background-color 0.15s ease;
}

.calendar-day:hover {
    background: rgba(200, 243, 72, 0.08);
}

.calendar-day.today {
    background: rgba(200, 243, 72, 0.1);
    border-left: 3px solid #C8F348;
}

.calendar-day.today:hover {
    background: rgba(200, 243, 72, 0.18);
}

.calendar-day.weekend {
    background: #f9fafb;
}

.calendar-day.weekend:hover {
    background: rgba(200, 243, 72, 0.08);
}

.calendar-day.empty {
    background: #f5f5f5;
    cursor: default;
    min-height: 60px;
}

.calendar-day.empty:hover {
    background: #f5f5f5;
}

.calendar-day .day-number {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 3px;
    color: #000000;
}

.calendar-day .day-badges {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.calendar-day .holiday-badge {
    display: block;
    font-size: 0.7rem;
    padding: 2px 5px;
    margin: 1px 0;
    border-radius: 3px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.holiday-badge.approved {
    background-color: #F298FF;
    color: #000000;
}

.holiday-badge.pending {
    background-color: #ffc107;
    color: #212529;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-nav h4 {
    margin: 0;
    font-weight: 500;
    color: #000000;
}

/* ── Holiday Calendar Responsive ── */

@media (max-width: 767.98px) {
    .calendar-day {
        min-height: 60px;
        padding: 3px;
    }

    .calendar-day .day-number {
        font-size: 0.75rem;
    }

    .calendar-day .holiday-badge {
        font-size: 0.6rem;
        padding: 1px 3px;
    }

    .calendar-header {
        padding: 5px 2px;
        font-size: 0.7rem;
    }

    .calendar-nav h4 {
        font-size: 1rem;
    }

    .calendar-nav .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .calendar-day {
        min-height: 45px;
        padding: 2px;
    }

    .calendar-day .holiday-badge {
        font-size: 0.55rem;
        padding: 1px 2px;
    }

    .calendar-header {
        font-size: 0.6rem;
        padding: 4px 1px;
    }
}