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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header & Navigation (from nav.php) */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

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

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a.active {
    color: #667eea !important;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #475569;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #475569;
    position: relative;
    transition: all 0.3s;
}

.hamburger-line::before,
.hamburger-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #475569;
    transition: all 0.3s;
    left: 0;
}

.hamburger-line::before {
    top: -6px;
}

.hamburger-line::after {
    top: 6px;
}

.nav-links.active+.menu-toggle .hamburger-line {
    background: transparent;
}

.nav-links.active+.menu-toggle .hamburger-line::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-links.active+.menu-toggle .hamburger-line::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Layout Components */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: #e2e8f0;
    color: #475569;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-sm {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.logout-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569;
}

.form-group select,
.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background: #f8fafc;
    transition: all 0.3s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #e2e8f0;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    vertical-align: top;
}

.total-row td {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

.btn-toggle-others {
    width: 100%;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-bottom: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-toggle-others:hover {
    background: #f1f5f9;
    color: #475569;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.status-quote {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
}

.status-upcoming {
    background: #e0f2fe;
    color: #0369a1;
}

.status-due {
    background: #fef3c7;
    color: #92400e;
}

.status-complete {
    background: #dcfce7;
    color: #166534;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.empty-state {
    color: #64748b;
    font-style: italic;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

/* Dashboard Specific */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-card p {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.welcome {
    margin-bottom: 32px;
}

.welcome h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.welcome .emoji {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
}

/* Order Details Specific */
.order-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.meta-box.status-box {
    grid-column: span 2;
}

.meta-box h4 {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.meta-box p {
    font-weight: 600;
}

.item-form {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}

.type-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.type-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.type-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.layer-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
}

.btn-add-layer {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.layer-summary {
    margin-top: 4px;
    padding-left: 12px;
    border-left: 2px solid #e2e8f0;
    font-size: 12px;
    color: #64748b;
}

.layer-summary span {
    font-weight: 600;
    color: #475569;
}

/* Baking List Specific */
.order-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.order-option {
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.order-option:hover {
    border-color: #667eea;
}

.order-option.selected {
    border-color: #667eea;
    background: #f0f4ff;
}

.summary-section {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-top: 32px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.summary-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.summary-card h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
    border-bottom: none;
}

/* Login Specific */
.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    animation: slideUp 0.6s ease-out;
    margin: 0 auto;
}

.logo-login {
    text-align: center;
    margin-bottom: 32px;
}

.logo-login h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.logo-login p {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 48px;
}

.toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 8px;
}

.setup-link {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.setup-link a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.text-danger {
    color: #e11d48 !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Custom Checkboxes & Inputs */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    user-select: none;
    min-height: 20px;
    white-space: nowrap;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #f1f5f9;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    transition: all 0.2s;
}

.checkbox-container:hover input~.checkmark {
    background-color: #e2e8f0;
}

.checkbox-container input:checked~.checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-input-sm {
    padding: 8px 12px !important;
    font-size: 14px !important;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    width: 100%;
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 40px;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.7;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Calendar Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    background: #e2e8f0;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-day-header {
    background: #667eea;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.calendar-day {
    background: white;
    min-height: 120px;
    padding: 8px;
    position: relative;
    border: 1px solid #f1f5f9;
}

.day-number {
    font-weight: 700;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-day-name {
    display: none;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.calendar-day.today {
    background: #fffbeb;
}

.calendar-day.today .day-number {
    color: #f59e0b;
}

.calendar-day.other-month {
    background: #f8fafc;
    opacity: 0.6;
}

.order-item {
    font-size: 11px;
    padding: 6px;
    border-radius: 6px;
    background: #e0f2fe;
    border-left: 3px solid #0369a1;
    margin-bottom: 4px;
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
}

.order-item:hover {
    transform: translateX(4px);
}

.order-item.quote {
    background: #fee2e2;
    border-left-color: #ef4444;
}

.order-item.quote:hover {
    background: #fee2e2;
}

.week-totals {
    background: #f1f5f9;
    padding: 12px;
    font-size: 11px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.week-total-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.week-total-label {
    color: #64748b;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.week-total-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    padding-left: 3px;
}

/* Mobile Media Queries - Increased to 1024px for robust triggering */
/* Segmented Control */
.segmented-control {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    border: 1px solid #e2e8f0;
}

.control-item {
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}

.control-item:hover {
    color: #475569;
}

.control-item.active {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 1024px) {
    body {
        padding: 20px 10px;
    }

    .header {
        padding: 16px 20px;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 0 !important;
        min-height: 72px;
    }

    .menu-toggle {
        display: flex !important;
        top: 16px;
        transform: none;
    }

    .nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        padding-top: 16px !important;
        order: 3;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        margin-left: 0 !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        padding: 12px 14px !important;
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-size: 16px !important;
    }

    .nav-links a.active {
        background: #eef2ff !important;
        border-color: #cbd5e1 !important;
    }

    .nav-links a:last-child {
        margin-bottom: 0;
    }

    .card {
        padding: 24px 16px !important;
        border-radius: 20px !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .type-selector {
        flex-wrap: wrap !important;
    }

    .type-btn {
        flex: 1 1 30% !important;
        padding: 10px 8px !important;
        font-size: 12px !important;
    }

    .layer-row {
        grid-template-columns: 1fr !important;
    }

    .meta-box.status-box {
        grid-column: span 1 !important;
    }

    /* Responsive Tables */
    table thead {
        display: none !important;
    }

    table,
    table tbody,
    table tr,
    table td {
        display: block !important;
        width: 100% !important;
    }

    table tr {
        margin-bottom: 12px !important;
        padding: 12px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        background: #f8fafc !important;
    }

    table td {
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 10px 0 !important;
        text-align: left !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    table td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    table td:first-child {
        padding-top: 0 !important;
    }

    table td:before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        display: inline-block !important;
        font-size: 10px !important;
        color: #64748b !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
        padding-top: 2px !important;
        width: 100px !important;
    }

    .order-info-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    /* Action column specific in mobile tables */
    table td[data-label="Action"] {
        justify-content: center !important;
        padding-top: 12px !important;
        border-bottom: none !important;
    }

    table td[data-label="Action"]:before {
        display: none !important;
    }

    table td[data-label="Action"] .btn {
        width: 100% !important;
    }

    /* Dashboard & Section Spacing */
    .dashboard-section {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }


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

    .empty-state {
        padding: 12px !important;
        font-size: 13px !important;
    }

    /* Calendar Mobile */
    .calendar-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important;
    }

    .calendar-day {
        border: 2px solid #e2e8f0 !important;
        border-radius: 16px !important;
        min-height: auto !important;
        padding: 16px !important;
    }

    .mobile-day-name {
        display: inline !important;
    }

    .calendar-day-header {
        display: none !important;
    }

    .week-totals {
        border-radius: 16px !important;
        margin-top: 12px !important;
        margin-bottom: 32px !important;
    }

    .calendar-header {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .calendar-header h2 {
        font-size: 22px !important;
        text-align: center !important;
    }

    .dashboard-section {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }

    /* Lightbox Mobile */
    .lightbox-prev {
        left: 10px !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .lightbox-next {
        right: 10px !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }
}
/* Admin Subnav */
.admin-nav {
    display: flex;
    gap: 24px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 32px;
    padding-bottom: 4px;
}

.admin-nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    padding-bottom: 12px;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-nav-link:hover {
    color: #2563eb;
}

.admin-nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

.admin-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.admin-nav-separator {
    width: 2px;
    height: 16px;
    background: #e2e8f0;
    align-self: center;
    margin: 0 4px;
    border-radius: 2px;
}
