/* style.css - Premium Modern Design Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Constants */
    --sidebar-width: 260px;
    --header-height: 70px;
}

/* Light Theme Variables */
:root[theme="light"] {
    --bg-app: #f4f5f8;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-solid: #ffffff;
    --bg-sidebar: #0f172a;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-focus: rgba(99, 102, 241, 0.4);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary: #4f46e5;
    --primary-light: #eff6ff;
    --primary-hover: #4338ca;
    
    --success: #10b981;
    --success-light: #ecfdf5;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    
    --scrollbar-track: #e2e8f0;
    --scrollbar-thumb: #cbd5e1;
    --card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 8px -1px rgba(15, 23, 42, 0.03);
    
    --sidebar-text: #94a3b8;
    --sidebar-text-active: #ffffff;
    --sidebar-bg-active: rgba(255, 255, 255, 0.1);
}

/* Dark Theme Variables */
:root[theme="dark"] {
    --bg-app: #09090b;
    --bg-card: rgba(18, 18, 24, 0.65);
    --bg-card-solid: #121218;
    --bg-sidebar: #121218;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-focus: rgba(129, 140, 248, 0.4);
    
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    --primary: #6366f1;
    --primary-light: rgba(99, 102, 241, 0.1);
    --primary-hover: #4f46e5;
    
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --danger: #f43f5e;
    --danger-light: rgba(244, 63, 94, 0.1);
    --warning: #fbbf24;
    --warning-light: rgba(251, 191, 36, 0.1);
    
    --scrollbar-track: #18181b;
    --scrollbar-thumb: #27272a;
    --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    
    --sidebar-text: #a1a1aa;
    --sidebar-text-active: #ffffff;
    --sidebar-bg-active: rgba(99, 102, 241, 0.2);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
}

/* App Wrapper Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-right: 1px solid var(--border-color);
    transition: transform var(--transition-normal);
}

.sidebar-brand {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-menu {
    list-style: none;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    overflow-y: auto;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--sidebar-text);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.menu-item a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-item.active a {
    color: var(--sidebar-text-active);
    background-color: var(--sidebar-bg-active);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818cf8, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    flex-grow: 1;
    min-width: 0;
}

.user-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    color: var(--sidebar-text);
    font-size: 11px;
}

.logout-btn {
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.logout-btn:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.top-header {
    height: var(--header-height);
    background-color: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.page-title {
    font-size: 20px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--border-color-focus);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.dark-icon { display: none; }
.light-icon { display: block; }
:root[theme="dark"] .dark-icon { display: block; }
:root[theme="dark"] .light-icon { display: none; }

/* Page Content Container */
.content-body {
    padding: 32px;
    flex-grow: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Glassmorphism Card CSS */
.glass-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.metric-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.metric-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon-box.balance {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.metric-icon-box.income {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.metric-icon-box.expense {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.metric-icon-box.clients {
    background-color: rgba(217, 70, 239, 0.1);
    color: #d946ef;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
}

.chart-container {
    position: relative;
    width: 100%;
    min-height: 280px;
}

/* Table Design */
.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-table th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}

.custom-table tbody tr {
    transition: background-color var(--transition-fast);
}

.custom-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

:root[theme="light"] .custom-table tbody tr:hover {
    background-color: rgba(15, 23, 42, 0.01);
}

/* Custom Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.badge-income {
    background-color: var(--success-light);
    color: var(--success);
}

.badge-expense {
    background-color: var(--danger-light);
    color: var(--danger);
}

.badge-outline {
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--border-color-focus);
}

.btn-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

.btn-danger:hover {
    background-color: var(--danger);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.btn-success {
    background-color: var(--success-light);
    color: var(--success);
}

.btn-success:hover {
    background-color: var(--success);
    color: #ffffff;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    color: var(--text-secondary);
}

.btn-icon:hover {
    color: var(--text-primary);
    background-color: var(--border-color);
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-backdrop.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    overflow: hidden;
}

.modal-backdrop.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Forms CSS */
.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

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

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

:root[theme="light"] .form-control {
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--border-color-focus);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

select.form-control option {
    background-color: var(--bg-card-solid);
    color: var(--text-primary);
}

/* Authentication Page layout */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-app);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Filters / Controls Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.filters-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Color dot preview for categories */
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Flex Utility */
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-12 {
    gap: 12px;
}

/* Mobile responsive menu hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .top-header {
        padding: 0 16px;
    }
    
    .hamburger {
        display: block;
        margin-right: 12px;
    }
    
    .content-body {
        padding: 16px;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-group {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Custom Alerts Styling */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}
.alert-success {
    background-color: var(--success-light);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}
.alert-danger {
    background-color: var(--danger-light);
    color: var(--danger);
    border-color: rgba(244, 63, 94, 0.2);
}
.alert-warning {
    background-color: var(--warning-light);
    color: var(--warning);
    border-color: rgba(251, 191, 36, 0.2);
}
.alert-info {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--border-color-focus);
}
.alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.alert-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobile App Experience Optimization */
.mobile-bottom-nav,
.mobile-popup-overlay,
.mobile-popup-sheet {
    display: none;
}

@media (max-width: 768px) {
    /* Prevent iOS auto-zoom on form inputs by ensuring 16px font size */
    .form-control, 
    select.form-control, 
    textarea.form-control,
    input[type="text"],
    input[type="number"],
    input[type="password"],
    input[type="email"],
    input[type="date"] {
        font-size: 16px !important;
        padding: 12px 14px !important; /* Larger touch targets */
    }
    
    /* Collapse grids into single columns for mobile screens to fit the screen */
    .charts-grid,
    .metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Optimize cards and spacing for native app look */
    .glass-card {
        padding: 16px !important;
        border-radius: 16px !important;
    }
    
    /* Adjust table paddings to prevent overflow and wrapping issues */
    .custom-table th, 
    .custom-table td {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }
    
    /* Extra spacing at the bottom of page container so content is not blocked by navigation bar */
    .app-container {
        padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
        overflow-x: hidden !important;
    }
    
    .content-body {
        padding: 16px !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px;
        background-color: var(--bg-card-solid);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 10px;
        font-weight: 600;
        gap: 4px;
        flex-grow: 1;
        height: 100%;
        transition: color var(--transition-fast);
    }
    
    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
        transition: transform var(--transition-fast);
    }
    
    .mobile-nav-item.active {
        color: var(--primary);
    }
    
    .mobile-nav-item.active svg {
        transform: scale(1.1);
    }
    
    /* Smooth transition for modals on touch devices */
    .modal-content {
        max-width: 90%;
        margin: 0 auto;
    }

    /* Mobile Sheet Popups Styling */
    .mobile-popup-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-popup-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-popup-sheet {
        display: block;
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background-color: var(--bg-card-solid);
        border-top: 1px solid var(--border-color);
        border-radius: 24px 24px 0 0;
        padding: 24px 20px;
        z-index: 2001;
        transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    }

    .mobile-popup-sheet.open {
        bottom: 0;
    }

    .mobile-sheet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .mobile-sheet-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .mobile-sheet-close {
        background: none;
        border: none;
        color: var(--text-secondary);
        font-size: 28px;
        cursor: pointer;
        padding: 0 4px;
        line-height: 1;
    }

    /* Tabs inside mobile sheets */
    .mobile-sheet-tabs {
        display: flex;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 20px;
        gap: 8px;
    }

    .mobile-sheet-tab {
        flex: 1;
        padding: 10px;
        text-align: center;
        color: var(--text-secondary);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all var(--transition-fast);
    }

    .mobile-sheet-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .mobile-sheet-content {
        display: none;
    }

    .mobile-sheet-content.active {
        display: block;
    }

    /* Small scrollbar for list containers inside sheets */
    .mobile-sheet-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 45vh;
        overflow-y: auto;
        margin-top: 12px;
    }

    .mobile-list-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

