/* 
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.vollkorn-<uniquifier> {
  font-family: "Vollkorn", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

body {
    background-color: #fefdfb;
    color: #4a3f36;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 1.6;
}

/* .welcome {
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #005b9c;
} */

.alert {
    width: 90%;
    margin: 20px auto;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 30px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-nav {
    flex-direction: row;
  }
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    --bs-navbar-brand-hover-color: #c67e3b;
    color: #4a3f36;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30px;
    padding-top: 0px;
    padding-bottom: 0px;
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border-color: rgba(74, 63, 54, 0.3);
    border-width: 2px;
    display: contents;
  }
  
.navbar-toggler-icon {
    color: #4a3f36;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.content {
    /* width: 90%; */
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
    box-sizing: border-box;
    align-content: center;
    justify-items: center;
}

.admin-container {
    margin: 50px;
    overflow-y: auto;
    box-sizing: border-box;
}

.survey-container {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    width: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 80px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.progress {
    --bs-progress-height: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.progress-bar {
    height: 1.3rem;
    --bs-progress-height: 1.3rem;
    background: linear-gradient(90deg, #7ba098 0%, #88b4a8 100%);
}

.question-title {
    font-weight: 600;
    color: #4a3f36;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
}

.section-title {
    font-weight: 600;
    color: #c67e3b;
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    margin-bottom: 15px;

}

.review-title{
    font-weight: 600;
    color: #c67e3b;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}
.review-page .review-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 126, 59, 0.18) 0%, rgba(212, 136, 106, 0.28) 100%);
    color: #c67e3b;
    font-size: 1.75rem;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.6);
}
.review-page .review-icon i {
    line-height: 1;
}
.review-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
}
.review-summary-card {
    background-color: #ffffff;
    border: 1px solid rgba(198, 126, 59, 0.15);
    border-radius: 18px;
}
.summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(123, 160, 152, 0.15);
    color: #7ba098;
    font-size: 1.2rem;
}
.review-answers {
    margin-bottom: 0;
}
.review-answer-list {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(198, 126, 59, 0.15);
    background-color: #ffffff;
}
.review-item {
    padding: 1.5rem;
    border: none;
    border-bottom: 1px solid rgba(198, 126, 59, 0.15);
    background-color: #ffffff;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.review-item:last-child {
    border-bottom: none;
}
.review-item:hover {
    background-color: rgba(254, 236, 223, 0.6);
}
.question-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c67e3b 0%, #d4886a 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.question-text {
    font-weight: 600;
    color: #4a3f36;
    letter-spacing: -0.2px;
}
.answer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    background-color: rgba(198, 126, 59, 0.12);
    color: #4a3f36;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}
.answer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #c67e3b;
}
.answer-value {
    font-weight: 500;
    word-break: break-word;
}
.review-item .btn-outline-secondary {
    border-color: #c67e3b;
    color: #c67e3b;
    background-color: transparent;
}
.review-item .btn-outline-secondary:hover,
.review-item .btn-outline-secondary:focus {
    background-color: #c67e3b;
    color: #ffffff;
}
.review-submit-form .btn-danger {
    background: linear-gradient(135deg, #c67e3b 0%, #d4886a 100%);
    border: none;
    box-shadow: 0 10px 24px rgba(198, 126, 59, 0.25);
}
.review-submit-form .btn-danger:hover,
.review-submit-form .btn-danger:focus {
    background: linear-gradient(135deg, #b56f2c 0%, #c67e3b 100%);
    box-shadow: 0 12px 28px rgba(198, 126, 59, 0.3);
}
.review-submit-form .btn-danger:active {
    transform: translateY(1px);
    box-shadow: 0 6px 16px rgba(198, 126, 59, 0.22);
}
.review-submit-form .btn-lg {
    min-width: 220px;
}
@media (max-width: 576px) {
    .review-item {
        padding: 1.25rem;
    }
    .question-chip {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .review-item .btn {
        width: 100%;
        justify-content: center;
    }
    .review-summary-card .review-submit-form {
        width: 100%;
    }
    .review-summary-card .review-submit-form .btn {
        width: 100%;
    }
    .review-submit-form .btn-lg {
        min-width: unset;
        width: 100%;
    }
}
.form-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.access-code {
    display: inline-block;
    width: 20%;
    margin-bottom: 20px;
}

.scale-question {
    width: 100%;
    margin-top: 20px;
}

.scale-labels-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.label-left,
.label-right {
    width: 15%;
    text-align: center;
}

.label-center {
    width: 25%;
    text-align: center;
}
/* 
.scale-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
}

.scale-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scale-option input[type="radio"] {
    margin-bottom: 5px;
    transform: scale(1.2);
    accent-color: #7ba098;
}

.scale-value {
    font-size: 0.9rem;
    color: #343a40;
} */

.scale-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
}

.scale-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 calc(14% - 10px);
    max-width: calc(14% - 10px);
    margin: 5px;
    box-sizing: border-box;
    text-align: center;
}

.scale-option input[type="radio"] {
    margin-bottom: 5px;
    transform: scale(1.2);
    accent-color: #7ba098;
}

.scale-value {
    font-size: 0.9rem;
    color: #343a40;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.form-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.access-btn {
    padding: 8px 20px;
    margin-bottom: 10px;
    font-size: 1rem;
    --bs-btn-bg: #7ba098;
    --bs-btn-border-color: #7ba098;
    --bs-btn-hover-bg: #6b9088;
    --bs-btn-hover-border-color: #6b9088;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-continue {
    --bs-btn-hover-bg: #c67e3b;
    --bs-btn-hover-border-color: #c67e3b;
    --bs-btn-active-bg: #b56f2c;
    --bs-btn-active-border-color: #b56f2c;
    --bs-btn-color: #c67e3b;
    --bs-btn-border-color: #c67e3b;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}



.register-link:hover {
    background: linear-gradient(135deg, #b56f2c 0%, #c67e3b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198,126,59,0.3);
    text-decoration: none !important;
}

.register-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-link:not(.register-link) {
    position: relative;
}

.nav-link:not(.register-link)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c67e3b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:not(.register-link):hover::after {
    width: 80%;
}

.nav-link:not(.register-link):hover {
    transform: translateY(-2px);
}

.lead {
    padding-left: 15px;
    padding-right: 15px;
}

/* Default styles for the brand text */
.brand-text {
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .navbar-brand {
        margin-right: auto;
        font-size: 1.5rem;
      }
}

@media (max-width: 991.98px) {
    .navbar-brand {
      margin-right: auto;
      font-size: 1.5rem;
    }
    .alert{
        margin: 30px auto;
        width: 100%;
    }
  }

@media (max-width: 768px) {
    .navbar-brand {
        margin-right: auto;
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .scale-options {
        flex-wrap: wrap;
    }

    .label-left,
    .label-center,
    .label-right {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .scale-option {
        flex: 1 1 calc(30% - 10px);
        max-width: calc(30% - 10px);
    }
    .scale-value {
        font-size: clamp(0.6rem, 3vw, .9rem);
    }
    .lead {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
    }
    .label-left,
    .label-center,
    .label-right {
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .brand-text {
        white-space: normal;
        display: block;
        text-align: center;
    }
    .form-navigation {
        flex-direction: column;
        align-items: center;
    }
}


.privacy-notice {
    animation: fadeInUp 0.5s ease-out;
}

.privacy-icon-wrapper {
    width: 20px;
    height: 20px;
    background: rgba(123, 160, 152, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon-wrapper i {
    font-size: 1.5rem;
    margin-top: 0px;
    color: #7ba098;
}

.privacy-notice .card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-notice .card:hover {
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional professional styling */
.form-control, .form-select {
    border: 1.5px solid #e5d5c8;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    color: #4a3f36;
    font-family: 'Inter', sans-serif;
}

.form-control:focus, .form-select:focus {
    border-color: #7ba098;
    box-shadow: 0 0 0 3px rgba(123, 160, 152, 0.15);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: #4a3f36;
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.form-check-input {
    border: 1.5px solid #d1d5db;
    width: 1.2rem;
    height: 1.2rem;
}

.form-check-input:checked {
    background-color: #7ba098;
    border-color: #7ba098;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(123, 160, 152, 0.15);
}

/* Card styling for better depth */
.card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Table styling */
.table {
    border-color: #e1e4e8;
}

.table th {
    background-color: #faf8f6;
    font-weight: 600;
    color: #4a3f36;
    border-bottom: 2px solid #e5d5c8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    color: #4a3f36;
    border-color: #e5d5c8;
}

/* Link styling */
a {
    color: #c67e3b;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #b56f2c;
    text-decoration: underline;
}

/* Prevent underline on navbar brand */
.navbar-brand:hover {
    text-decoration: none !important;
}

/* Prevent underline on nav links */
.nav-link:hover {
    text-decoration: none !important;
}

/* Success/Error states */
.alert-success {
    background-color: #f3faf7;
    border-color: #7ba098;
    color: #2d5449;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #dc3545;
    color: #7f1d1d;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
    color: #78350f;
}

/* Subtle animations */
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

/* Admin theme palette */
:root {
    --admin-ink: #1c2237;
    --admin-ink-soft: #e1e5f2;
    --admin-ivory: #f6f2e8;
    --admin-ivory-soft: #f9f6ef;
    --admin-emerald: #2f5130;
    --admin-emerald-soft: #e7efe8;
    --admin-amber: #c08a2a;
    --admin-amber-soft: #f6f0df;
    --admin-rose: #8b1e3f;
    --admin-rose-soft: #f3e3e6;
    --admin-slate: #3f4458;
}

.admin-dashboard .card {
    border-radius: 16px;
}
.admin-dashboard .card-header {
    border-bottom: 0;
}

.dashboard-hero,
.admin-hero {
    background-color: var(--admin-ink);
    position: relative;
    overflow: hidden;
    color: var(--admin-ivory);
    border-radius: 20px;
}
.dashboard-hero .card-body,
.admin-hero .card-body {
    position: relative;
    z-index: 1;
}
.dashboard-hero-content h1,
.admin-hero-content h1 {
    color: #faf5e9;
}
.dashboard-hero .lead,
.admin-hero .lead {
    color: rgba(246, 242, 232, 0.85);
}
.dashboard-hero-actions .btn,
.admin-hero-actions .btn {
    border-radius: 999px;
    padding-inline: 1.2rem;
    backdrop-filter: blur(4px);
}
.badge-hero {
    background-color: rgba(246, 242, 232, 0.25);
    color: var(--admin-ivory);
    border: 1px solid rgba(246, 242, 232, 0.3);
}

.btn-hero-light {
    background-color: var(--admin-ivory);
    border: 1px solid #ebe3d3;
    color: var(--admin-ink);
}
.btn-hero-light:hover {
    background-color: #efe7d7;
    color: var(--admin-ink);
}
.btn-hero-outline {
    border: 1px solid #d4af37;
    color: #d4af37;
    background-color: transparent;
}
.btn-hero-outline:hover {
    background-color: rgba(212, 175, 55, 0.12);
    color: #b9961f;
}
.btn-hero-emerald {
    background-color: var(--admin-emerald);
    border: 1px solid #274427;
    color: #ffffff;
}
.btn-hero-emerald:hover {
    background-color: #284828;
    color: #ffffff;
}
.btn-hero-danger {
    background-color: var(--admin-rose);
    border: 1px solid #701832;
    color: #ffffff;
}
.btn-hero-danger:hover {
    background-color: #7a1b37;
    color: #ffffff;
}
.btn-outline-ink {
    border: 1px solid var(--admin-ink);
    color: var(--admin-ink);
    background-color: transparent;
}
.btn-outline-ink:hover {
    background-color: rgba(28, 34, 55, 0.08);
    color: var(--admin-ink);
}
.btn-outline-forest {
    border: 1px solid var(--admin-emerald);
    color: var(--admin-emerald);
    background-color: transparent;
}
.btn-outline-forest:hover {
    background-color: rgba(47, 81, 48, 0.12);
    color: var(--admin-emerald);
}
.btn-outline-rose {
    border: 1px solid var(--admin-rose);
    color: var(--admin-rose);
    background-color: transparent;
}
.btn-outline-rose:hover {
    background-color: rgba(139, 30, 63, 0.12);
    color: var(--admin-rose);
}
.btn-hero-light,
.btn-hero-outline,
.btn-hero-emerald,
.btn-hero-danger,
.btn-outline-ink,
.btn-outline-forest,
.btn-outline-rose {
    transition: all 0.2s ease;
    border-radius: 999px;
}

.metric-card {
    background-color: var(--admin-ivory-soft);
    border: 1px solid #e6dfce;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
}
.metric-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.metric-icon.icon-navy {
    background-color: var(--admin-ink-soft);
    color: var(--admin-ink);
}
.metric-icon.icon-forest {
    background-color: var(--admin-emerald-soft);
    color: var(--admin-emerald);
}
.metric-icon.icon-amber {
    background-color: var(--admin-amber-soft);
    color: #8a6d2f;
}
.metric-icon.icon-rose {
    background-color: var(--admin-rose-soft);
    color: var(--admin-rose);
}

.progress-thin {
    height: 6px;
    background-color: rgba(28, 34, 55, 0.12);
    border-radius: 999px;
}
.progress-thin .progress-bar {
    border-radius: 999px;
}
.progress-bar-forest {
    background-color: var(--admin-emerald);
}
.progress-bar-amber {
    background-color: var(--admin-amber);
}
.progress-bar-rose {
    background-color: var(--admin-rose);
}

.admin-dashboard .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.admin-dashboard .accordion-item:last-of-type {
    margin-bottom: 0;
}
.admin-dashboard .accordion-button {
    font-weight: 600;
}
.admin-dashboard .accordion-button:focus {
    box-shadow: none;
}
.admin-dashboard .accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
}
.admin-dashboard .list-group-item {
    border-left: 0;
    border-right: 0;
}
.admin-dashboard code {
    background-color: #f3ecda;
    padding: 2px 6px;
    border-radius: 4px;
}
.admin-dashboard .card table th {
    font-weight: 600;
    color: var(--admin-ink);
}
.admin-dashboard .badge {
    letter-spacing: 0.02em;
}

.badge-soft-navy {
    background-color: var(--admin-ink-soft);
    color: var(--admin-ink);
}
.badge-soft-forest {
    background-color: var(--admin-emerald-soft);
    color: var(--admin-emerald);
}
.badge-soft-amber {
    background-color: var(--admin-amber-soft);
    color: #8a6d2f;
}
.badge-soft-rose {
    background-color: var(--admin-rose-soft);
    color: var(--admin-rose);
}
.badge-soft-ink {
    background-color: #e6e7ec;
    color: var(--admin-slate);
}

.dashboard-activity-list .list-group-item {
    border: 0;
    border-radius: 12px;
    background-color: #f7f3ea;
    margin-bottom: 0.75rem;
}
.dashboard-activity-list .list-group-item:last-child {
    margin-bottom: 0;
}

.bg-ivory {
    background-color: var(--admin-ivory) !important;
}
.card-header-ink {
    background-color: var(--admin-ink);
    border-bottom: 0;
}
.text-ink {
    color: var(--admin-ink) !important;
}

.admin-panel {
    background-color: #ffffff;
    border: 1px solid rgba(28, 34, 55, 0.08);
    border-radius: 18px;
    box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.08);
}
.admin-panel .card-header {
    border-bottom: 1px solid rgba(28, 34, 55, 0.08);
}
.admin-panel h2,
.admin-panel h3,
.admin-panel h4,
.admin-panel h5 {
    color: var(--admin-ink);
}

.admin-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--admin-ink);
    letter-spacing: -0.3px;
}
.admin-section-subtitle {
    color: rgba(28, 34, 55, 0.65);
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.admin-form-actions .btn {
    min-width: 140px;
}

.admin-table {
    border-radius: 18px;
    border: 1px solid rgba(28, 34, 55, 0.08);
    overflow: hidden;
}
.admin-table .table {
    margin-bottom: 0;
}
.admin-table .table th {
    background-color: #f2eee3;
    color: var(--admin-ink);
}

.admin-filter-card {
    background-color: var(--admin-ivory-soft);
    border: 1px solid #e6dfce;
    border-radius: 16px;
    padding: 1.5rem;
}

.admin-metric-group {
    display: grid;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .dashboard-hero .card-body,
    .admin-hero .card-body {
        padding: 2rem !important;
    }
    .dashboard-hero-actions .btn,
    .admin-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
