/* Dashboard Layout Specifics */
.dashboard-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
    padding: 6px;
    background: var(--glass-surface-light);
    border-radius: 20px;
    border: 1px solid var(--glass-border-light);
    width: fit-content;
}

.dashboard-tab {
    padding: 10px 24px;
    border-radius: 14px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.dashboard-tab:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-tab.active {
    background: var(--glass-surface-strong);
    color: var(--gold-primary);
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
}

/* Hide sections by default for tab switching */
.dashboard-section {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.dashboard-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Common Control Hub Style for all sections */
.controller-hub {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced from 20px */
}