/* ================================================= */
/* TECHSTORE – MY ACCOUNT (2025 LUXURY EDITION)   */
/* Perfect match with navbar/footer #1a2331       */
/* External CSS – Clean, Professional, Stunning   */
/* ================================================= */

:root {
    --navy: #1a2331; /* Matched from your navbar/footer */
    --primary: #3b82f6; /* A clean, vibrant blue */
    --primary-dark: #2563eb;
    --accent: #06b6d4; /* A techy cyan/teal for gradients */
    --accent-hover: #0891b2;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --bg-body: #f8fafc; /* Very light background for contrast */
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text: #0f172a;
    --text-light: #475569;
    --text-muted: #64748b;
    --radius: 24px; /* Large radius for a modern, soft feel */
    --radius-sm: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
    --shadow-lg: 0 20px 60px rgba(59, 130, 246, 0.15); /* Premium shadow for active elements */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Display', system-ui, -apple-system, sans-serif;
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
}





/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(43, 112, 121, 0.3);
    }

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

.btn-danger {
    background: var(--danger);
    color: white;
}

    .btn-danger:hover {
        background: #dc2626;
        transform: translateY(-2px);
    }

.btn-success {
    background: var(--success);
    color: white;
}

    .btn-success:hover {
        background: #059669;
        transform: translateY(-2px);
    }

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}



/* ==================== LAYOUT & BG ==================== */
.account-page {
    min-height: 100vh;
    /* Luxurious soft light background gradient */
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 12rem 0 6rem;
}

.profile-head {
    margin-bottom: 1.5rem;
}

.account-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    /* Slightly wider sidebar for premium feel */
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .account-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
}

/* ==================== SIDEBAR (Navigation) ==================== */
.account-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 2rem;
    z-index: 10;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.avatar-placeholder {
    width: 100px; /* Reduced for better balance */
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); /* Subtle blue shadow */
    transition: var(--transition);
}

    .avatar-placeholder:hover {
        transform: scale(1.05);
    }

.user-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.5rem 0 0.2rem;
}

.user-email {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Profile Progress Bar */
.profile-progress {
    background: #f0f9ff;
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: left; /* Aligned left for professionalism */
    border: 1px solid #bae6fd;
    margin: 2.5rem 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.progress-track {
    height: 8px;
    background: #e0f2fe;
    border-radius: 999px;
    overflow: hidden;
    margin: 0.75rem 0;
}

.progress-done {
    height: 100%;
    /* Use the same gradient for consistency */
    width: 78%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.profile-progress small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* Sidebar Menu Items */
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

    .menu-item:hover {
        background: #eff6ff;
        color: var(--primary-dark);
        transform: translateY(-3px); /* Subtle lift on hover */
    }

    .menu-item.active {
        /* Premium gradient background */
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        font-weight: 600;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        transform: none; /* No transform on active */
    }

    .menu-item i {
        width: 24px;
        font-size: 1.1rem;
        text-align: center;
    }

    .menu-item .badge {
        margin-left: auto;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.3rem 0.7rem;
        border-radius: 999px;
        font-size: 0.8rem;
        min-width: 30px;
        text-align: center;
    }

    .menu-item:not(.active) .badge {
        background: var(--danger);
        color: white;
        box-shadow: none;
    }

    .menu-item.signout {
        margin-top: 1rem;
        color: var(--danger);
        border: 1px solid var(--border);
    }

        .menu-item.signout:hover {
            background: rgba(239, 68, 68, 0.08);
            color: var(--danger);
        }


/* ==================== MAIN CONTENT ==================== */
.account-content {
    display: none;
    /* Smoother, faster fade-in for modern feel */
    animation: fadeIn 0.4s ease-out;
}

    .account-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Content Header */
.content-header {
    margin-bottom: 3rem;
}

    .content-header h1 {
        font-size: 3.2rem;
        font-weight: 800;
        /* Gradient text for a tech-luxury look */
        background: linear-gradient(135deg, var(--navy), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .content-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
    }

/* Cards (Base) */
.form-section {
    margin-bottom: 4rem;
}

    .form-section h2 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 1.5rem;
        border-left: 5px solid var(--primary);
        padding-left: 1rem;
    }

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .card:hover {
        transform: translateY(-8px); /* Less aggressive lift */
        box-shadow: 0 15px 45px rgba(59, 130, 246, 0.1);
    }

/* Profile Card Styling */
.profile-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.profile-card-header {
    background: var(--navy);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.profile-card-body {
    padding: 3rem;
    background: var(--bg-card);
}

.profile-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    text-align: center;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9fb; /* Slightly off-white input background */
}

    .input-group input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        background: white;
    }

    .input-group input:disabled {
        background: #eef2f8;
        color: var(--text-light);
        cursor: not-allowed;
        border-style: dashed;
    }

.input-hint {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

    .input-hint.success {
        color: var(--success);
        font-weight: 500;
    }

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

    .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(59, 130, 246, 0.05);
        transform: translateY(-2px);
    }

/* ==================== ORDERS SECTION ==================== */
.order-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 5px solid;
    transition: var(--transition);
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .stat-card i {
        font-size: 2.5rem;
        opacity: 0.6;
    }

    .stat-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }

    .stat-card p {
        color: var(--text-muted);
    }

    .stat-card.delivered {
        border-color: var(--success);
    }

    .stat-card.processing {
        border-color: var(--warning);
    }

    .stat-card.total {
        border-color: var(--primary);
    }

form-section .order-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition);
}

    form-section .order-item:hover {
        box-shadow: var(--shadow);
    }

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: #f9f9fb;
    border-bottom: 1px solid var(--border);
}

    .order-header span {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

.status-delivered {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.order-body {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

    .order-body img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        border-radius: var(--radius-sm);
        border: 1px solid #eef2f8;
    }

.order-info {
    flex-grow: 1;
}

    .order-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .order-info p {
        color: var(--text-muted);
    }

.order-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

    .order-price strong {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .order-price .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

.view-all-orders {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== WISHLIST SECTION ==================== */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.wishlist-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .wishlist-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.wishlist-img-wrapper {
    position: relative;
    overflow: hidden;
}

    .wishlist-img-wrapper img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.wishlist-item:hover img {
    transform: scale(1.05);
}

.remove-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--danger);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    font-size: 1rem;
    transition: var(--transition);
}

    .remove-wishlist:hover {
        background: var(--danger);
        color: white;
    }

.badge-instock, .badge-outstock {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.badge-instock {
    background: var(--success);
}

.badge-outstock {
    background: var(--danger);
}

.wishlist-content {
    padding: 1.5rem 2rem 2rem;
}

    .wishlist-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .wishlist-content p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

.wishlist-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.8rem;
}

.discount-badge {
    background: var(--warning);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.notify-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

    .notify-link:hover {
        color: var(--accent-hover);
        text-decoration: underline;
    }

/* ==================== ADDRESSES SECTION ==================== */
.add-address-btn {
    margin-bottom: 2rem;
}

    .add-address-btn .btn-primary {
        padding: 1rem 2.5rem;
    }

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.address-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    padding-top: 3.5rem; /* Space for the label */
}

    .address-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.address-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 2rem;
    background: #f0f4f8;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-card.default .address-label {
    background: var(--primary);
    color: white;
}

.address-label.home i {
    color: var(--success);
}

.address-label.work i {
    color: var(--warning);
}


.address-body {
    padding: 1.5rem 2rem 2rem;
}

    .address-body h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .address-body p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .address-body strong {
        font-weight: 600;
        color: var(--text);
    }

.address-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.set-default {
    background: #eef2f8;
    color: var(--primary-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .set-default:hover {
        background: #dde6f2;
    }
/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

    .modal.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

    .modal-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-body);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .modal-close:hover {
        background: var(--danger);
        color: white;
        transform: rotate(90deg);
    }

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .account-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .account-container {
        padding: 1.5rem;
    }

    .content-area {
        padding: 2rem;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .content-header h1 {
            font-size: 2rem;
        }

    .order-footer, .wishlist-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .address-actions {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }
}

.input-readonly {
    background-color: #f0f0f0 !important;
    color: #555 !important;
    cursor: not-allowed;
    border-color: #ccc !important;
}

/* ==== GLOBAL TOP ALERT ===== */
#profile-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    min-width: 300px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.4s ease;
    animation: alertSlide 0.4s ease;
}

/* Entrance animation */
@keyframes alertSlide {
    from {
        transform: translate(-50%, -20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Success */
.alert-success {
    background: #e9f9ee;
    border-left: 5px solid #2ecc71;
    color: #1e824c;
}

/* Danger */
.alert-danger {
    background: #fdeaea;
    border-left: 5px solid #e74c3c;
    color: #c0392b;
}



/* Address Cards */
.address-card {
    position: relative;
}

.address-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.add-new-card {
    border: 2px dashed var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    cursor: pointer;
    transition: var(--transition);
}

    .add-new-card:hover {
        border-color: var(--accent);
        background: rgba(43, 112, 121, 0.05);
    }

    .add-new-card i {
        font-size: 3rem;
        color: var(--text-light);
        margin-bottom: 1rem;
    }

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

    .empty-state i {
        font-size: 2rem;
        color: var(--text-muted);
        ;
    }

    .empty-state h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }
