/* Dashboard Tabs - Desktop Styles (Moved from inline) */
.dashboard-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* Active State */
.dashboard-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.dashboard-tab.active:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

/* Mobile Overrides are in mobile-responsive.css */