* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7c3aed;
    --primary-dark: #6b21a6;
    --primary-light: #a78bfa;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-gray: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
}

html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-y: scroll;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.notification-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.notification-bell svg {
    transition: transform 0.3s;
}

.notification-bell:hover svg {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--error);
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cart-icon svg {
    transition: transform 0.3s;
}

.cart-icon:hover svg {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #7c3aed;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    height: 48px;
    line-height: 1;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

.nav-links .btn-primary {
    color: white !important;
}

.nav-links .btn-primary:hover {
    color: white !important;
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
}

.btn-block {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-logout {
    background: var(--error);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    line-height: 1;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-logout:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.flash {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-success { background: var(--success); color: white; }
.flash-error { background: var(--error); color: white; }
.flash-warning { background: var(--warning); color: white; }

.flash-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.feature-icon {
    font-size: 24px;
}

.info-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.info-number {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
}

.auth-card h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.auth-subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group input:disabled {
    background: var(--bg-gray);
    cursor: not-allowed;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: var(--primary-purple);
    text-decoration: none;
}

.questionnaire-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-gray);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-purple);
    transition: width 0.3s;
}

.section {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section.active {
    display: block;
    animation: fadeIn 0.3s;
}

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

.section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.section-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.conditional {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}

.dashboard-container,
.settings-container,
.admin-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.dashboard-container h1,
.settings-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dash-card,
.settings-card,
.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dash-card h3,
.settings-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.bmi-display {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-purple);
    text-align: center;
    margin: 20px 0;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    color: var(--primary-purple);
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

table th {
    background: var(--primary-purple);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
}

table tr:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary-light);
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

.success-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

.email-highlight {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-purple);
    margin: 20px 0;
}

.text-muted {
    color: var(--text-gray);
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-close {
    color: var(--text-gray);
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--error);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 24px;
}

.weight-progress-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.weight-progress-container h2 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 26px;
    text-align: center;
}

.chart-message {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 15px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-purple);
}

#weightProgressChart {
    max-height: 500px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-features { flex-direction: column; align-items: center; gap: 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .settings-grid { grid-template-columns: 1fr; }
    .section { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .section-buttons { flex-direction: column; }
    table { font-size: 14px; }
    table th, table td { padding: 10px; }

    .dashboard-container,
    .settings-container,
    .admin-container {
        margin: 20px auto !important;
        padding: 0 15px !important;
    }

    .dashboard-container h1,
    .settings-container h1 {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }

    .dash-card,
    .settings-card {
        padding: 20px !important;
    }

    .dash-card h3,
    .settings-card h3 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .bmi-display {
        font-size: 40px !important;
    }

    .footer {
        padding: 30px 0 15px !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }

    .footer-section h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px !important;
    }

    .weight-progress-container {
        padding: 20px !important;
        margin-top: 25px !important;
    }

    .weight-progress-container h2 {
        font-size: 22px !important;
    }

    .modal-content {
        padding: 20px !important;
    }

    .modal-content h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    .container { padding: 0 12px !important; }
    .btn-large { padding: 12px 24px; font-size: 16px; }
    .hero-section { padding: 40px 0; }
    .info-section, .cta-section { padding: 40px 0; }

    .dashboard-container,
    .settings-container,
    .questionnaire-container,
    .admin-container {
        margin: 15px auto !important;
        padding: 0 12px !important;
    }

    .dashboard-container h1,
    .settings-container h1 {
        font-size: 26px !important;
        margin-bottom: 18px !important;
    }

    .dash-card,
    .settings-card {
        padding: 18px !important;
        border-radius: 12px !important;
    }

    .dash-card h3,
    .settings-card h3 {
        font-size: 19px !important;
        margin-bottom: 14px !important;
    }

    .bmi-display {
        font-size: 38px !important;
        margin: 16px 0 !important;
    }

    .dash-card p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .btn-block {
        height: 48px !important;
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px !important;
    }

    .form-group label {
        font-size: 15px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .weight-progress-container {
        padding: 18px !important;
        margin-top: 20px !important;
    }

    .weight-progress-container h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    #weightProgressChart {
        max-height: 350px !important;
    }

    .chart-message {
        font-size: 14px !important;
        padding: 10px !important;
        margin-top: 12px !important;
    }

    .modal-content {
        width: 95% !important;
        padding: 18px !important;
    }

    .modal-content h2 {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }

    .form-group input#current-weight {
        font-size: 18px !important;
        padding: 14px !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    .container { padding: 0 10px !important; }

    .dashboard-container,
    .settings-container,
    .questionnaire-container,
    .admin-container {
        margin: 12px auto !important;
        padding: 0 10px !important;
    }

    .dashboard-container h1,
    .settings-container h1 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .dash-card,
    .settings-card {
        padding: 16px !important;
        border-radius: 10px !important;
    }

    .dash-card h3,
    .settings-card h3 {
        font-size: 18px !important;
    }

    .bmi-display {
        font-size: 34px !important;
        margin: 14px 0 !important;
    }

    .dash-card p {
        font-size: 13px !important;
    }

    .btn-block {
        height: 46px !important;
        font-size: 14px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .footer-section h3 {
        font-size: 15px !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px !important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

@media (max-width: 900px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 42px;
    }

    .nav-toggle {
        display: flex !important;
    }

    .nav-links {
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        align-items: stretch !important;
        z-index: 999 !important;
        border-top: 1px solid var(--border-gray) !important;
    }

    .nav-links.active {
        max-height: 500px !important;
        padding: 10px 0 !important;
    }

    .nav-links a {
        padding: 14px 20px !important;
        border-bottom: 1px solid #f3f4f6 !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 50px !important;
        font-size: 15px !important;
    }

    .nav-links .btn-primary,
    .nav-links .btn-secondary,
    .nav-links .btn-logout {
        width: calc(100% - 32px) !important;
        margin: 6px 16px !important;
        border-bottom: none !important;
        height: 50px !important;
        border-radius: 8px !important;
    }

    .nav-links a:hover {
        background: #f9fafb !important;
    }

    .nav-links a:last-child {
        border-bottom: none !important;
    }
}

button, .btn, a.btn-soap, a.btn-edit, a.btn-primary, a.btn-secondary, a.btn-success, a.btn-danger, a.btn-view, a.btn-delete, a.btn-create, a.btn-back, .btn-submit, .btn-cancel, .btn-edit-note {
    box-sizing: border-box !important;
    display: inline-block !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
}

.action-buttons button,
.action-buttons a,
.action-buttons .btn-soap,
.action-buttons .btn-edit,
.action-buttons .btn-primary,
.action-buttons .btn-success,
.action-buttons .btn-danger {
    padding: 10px 12px !important;
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    height: 40px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
}

.admin-header {
    margin-bottom: 20px;
}

.admin-header h1,
.header-section h1,
.admin-container > .breadcrumb + .header-section h1,
.admin-container h1:first-of-type {
    font-size: 26px !important;
    color: #7c3aed;
    margin-bottom: 12px;
    font-weight: 700;
}

.admin-nav {
    display: flex;
    gap: 0;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f3f4f6;
}

.admin-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
    pointer-events: none;
}

.admin-nav::-webkit-scrollbar {
    height: 4px;
}

.admin-nav::-webkit-scrollbar:vertical {
    width: 0;
    display: none;
}

.admin-nav::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 2px;
}

.admin-nav::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.admin-nav::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.admin-nav .nav-link {
    padding: 12px 18px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 3px solid transparent;
    margin-bottom: 0;
    flex-shrink: 0;
}

.admin-nav .nav-link:hover {
    color: #7c3aed;
}

.admin-nav .nav-link.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.admin-nav .nav-link .badge {
    background: #ef4444;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 768px) {
    .admin-header h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .admin-nav .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}
