:root {
    --primary: #4361ee;
    --success: #4cc9f0;
    --warning: #f72585;
    --danger: #ef233c;
    --dark: #2b2d42;
    --light: #f8f9fa;
    --border-color: #e1e5e9;
    --gray: #6c757d;
    --text: #333;
    --background: #ffffff;
}

[data-theme="dark"] {
    --primary: #4cc9f0;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e17055;
    --dark: #2d3436;
    --light: #636e72;
    --border-color: #2d3436;
    --gray: #b2bec3;
    --text: #ffffff;
    --background: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    transition: all 0.3s ease;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background: var(--background);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}
/* Sidebar Toggle Button */
.sidebar-toggle {
    position: absolute;
    top: 20px;
    right: 15px;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}
/* Add these styles to your style.css file */

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a56d4;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0, 0, 0, 0.05);
}

/* Enhanced Sidebar Styles */
.sidebar {
    width: 280px;
    background: var(--background);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    position: fixed;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.sidebar-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Sidebar Search */
.sidebar-search {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container i {
    position: absolute;
    left: 12px;
    color: var(--gray);
    z-index: 1;
}

.search-container input {
    width: 100%;
    padding: 10px 40px 10px 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background);
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.search-clear {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-clear.visible {
    opacity: 1;
}

.search-clear:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

/* Sidebar Menu Container with Custom Scroll */
.sidebar-menu-container {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.sidebar-menu-container::-webkit-scrollbar {
    width: 4px;
}

.sidebar-menu-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* Enhanced Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 2px;
    position: relative;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(67, 97, 238, 0.1);
    border-left-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-menu i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Menu Badges */
.menu-badge {
    background: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

.sidebar-menu a:hover .menu-badge,
.sidebar-menu a.active .menu-badge {
    background: white;
    color: var(--primary);
}

/* Quick Actions Section */
.sidebar-quick-actions {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.sidebar-quick-actions h3 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(67, 97, 238, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    text-align: center;
}

.quick-action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
}

.quick-action-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.quick-action-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* User Profile Section */
.sidebar-user-profile {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.sidebar-user-profile .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3a56d4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    overflow: hidden;
}

.user-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-balance {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

.sidebar-user-profile .logout-btn {
    color: var(--text);
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239, 35, 60, 0.1);
    border: 1px solid transparent;
    flex-shrink: 0;
}

.sidebar-user-profile .logout-btn:hover {
    background: rgba(239, 35, 60, 0.2);
    border-color: var(--danger);
    color: var(--danger);
    transform: scale(1.1);
}

/* Collapsible Sidebar (Optional) */
.sidebar.collapsed {
    width: 70px;
}

.sidebar.collapsed .sidebar-header span,
.sidebar.collapsed .sidebar-search,
.sidebar.collapsed .sidebar-quick-actions,
.sidebar.collapsed .user-info,
.sidebar.collapsed .menu-badge,
.sidebar.collapsed .sidebar-menu span {
    display: none;
}

.sidebar.collapsed .sidebar-menu a {
    justify-content: center;
    padding: 12px;
}

.sidebar.collapsed .sidebar-menu a:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1001;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar.collapsed {
        width: 100%;
    }
    
    .sidebar.collapsed .sidebar-header span,
    .sidebar.collapsed .sidebar-search,
    .sidebar.collapsed .sidebar-quick-actions,
    .sidebar.collapsed .user-info,
    .sidebar.collapsed .menu-badge,
    .sidebar.collapsed .sidebar-menu span {
        display: block;
    }
    
    .sidebar.collapsed .sidebar-menu a {
        justify-content: flex-start;
        padding: 12px 20px;
    }
    
    .sidebar.collapsed .sidebar-menu a:hover::after {
        display: none;
    }
}

/* Main Content Scrollbar */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Page Content Scrollbar */
.page-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    overflow-y: auto;
}

[data-theme="dark"] .page-content {
    background: #2d3436;
}

/* Card Scrollable Content */
.card-scrollable {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.card-scrollable::-webkit-scrollbar {
    width: 6px;
}
/* Add to your existing CSS */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.card-scrollable::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Table Scroll */
.table-responsive {
    overflow-x: auto;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Adjust main content when sidebar is collapsed */
.main-content {
    transition: margin-left 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sidebar-toggle {
        display: none;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(67, 97, 238, 0.1);
    border-left-color: var(--primary);
    color: var(--primary);
}

.sidebar-menu i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 250px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: var(--background);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    color: var(--text);
    font-size: 1.8rem;
}

/* Header Controls Styles */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.theme-toggle i {
    font-size: 0.8rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

[data-theme="dark"] .theme-toggle::before {
    left: calc(100% - 27px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.user-info:hover {
    background: rgba(67, 97, 238, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3a56d4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-info span {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.logout-btn {
    color: var(--text);
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239, 35, 60, 0.1);
    border: 1px solid transparent;
}

.logout-btn:hover {
    background: rgba(239, 35, 60, 0.2);
    border-color: var(--danger);
    color: var(--danger);
    transform: scale(1.1);
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
}

[data-theme="dark"] .page-content {
    background: #2d3436;
}

/* Card Styles */
.card {
    background: var(--background);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.balance-card {
    background: linear-gradient(135deg, var(--primary), #3a56d4);
    color: white;
}

.balance-card .card-title,
.balance-card p {
    color: white;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.balance-change {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--background);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--text);
}

.stat-card .label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--background);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

/* Button Styles */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.table th,
.table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: rgba(67, 97, 238, 0.1);
    color: var(--text);
    font-weight: 600;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
}

.alert-error {
    background: rgba(239, 35, 60, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-success {
    background: rgba(0, 184, 148, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

/* Text Colors */
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-primary { color: var(--primary); }

/* Menu List */
.menu-list {
    list-style: none;
}

.menu-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-list li:last-child {
    border-bottom: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Styles for Header Controls */
@media (max-width: 768px) {
    .header-controls {
        gap: 15px;
    }
    
    .user-info {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .user-info span {
        font-size: 0.85rem;
        display: none;
    }
    
    .theme-toggle {
        width: 50px;
        height: 25px;
        padding: 0 8px;
    }
    
    .theme-toggle i {
        font-size: 0.7rem;
    }
    
    .theme-toggle::before {
        width: 18px;
        height: 18px;
    }
    
    [data-theme="dark"] .theme-toggle::before {
        left: calc(100% - 23px);
    }
    
    .logout-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .header-controls {
        gap: 10px;
    }
    
    .user-info {
        padding: 5px 10px;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .theme-toggle {
        width: 45px;
        height: 22px;
    }
    
    .theme-toggle::before {
        width: 16px;
        height: 16px;
    }
    
    [data-theme="dark"] .theme-toggle::before {
        left: calc(100% - 21px);
    }
}

/* Header specific mobile adjustments */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header h1 {
        font-size: 1.4rem;
        order: 1;
        flex: 1;
        min-width: 200px;
    }
    
    .mobile-menu-toggle {
        order: 0;
        margin-right: 10px;
    }
    
    .header-controls {
        order: 2;
        justify-content: flex-end;
        flex: 1;
        min-width: 150px;
    }
    
    .page-content {
        padding: 20px 15px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }
    
    .header h1 {
        font-size: 1.2rem;
        min-width: 150px;
    }
    
    .header-controls {
        min-width: 120px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 1.4rem;
    }
    
    .card {
        padding: 20px 15px;
    }
}

/* Animation for theme toggle */
@keyframes themeSwitch {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.theme-toggle:active {
    animation: themeSwitch 0.3s ease;
}

/* Focus states for accessibility */
.theme-toggle:focus,
.logout-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .user-info {
        border: 2px solid var(--text);
    }
    
    .logout-btn {
        border: 2px solid var(--text);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .theme-toggle,
    .user-info,
    .logout-btn {
        transition: none;
    }
    
    .theme-toggle:active {
        animation: none;
    }
}