/* 
 * Dashboard Module Styles
 * Main container and layout for dashboard view
 */

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.dashboard-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-main);
    flex: 1;
    min-width: 200px;
}

.dashboard-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Tablet responsive */
@media (max-width: 768px) {
    .dashboard-container {
        gap: var(--spacing-md);
    }

    .dashboard-header h1 {
        font-size: 1.375rem;
    }

    .dashboard-actions {
        width: 100%;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-header h1 {
        font-size: 1.125rem;
        width: 100%;
    }

    .dashboard-actions {
        width: 100%;
        flex-direction: column;
    }

    .dashboard-actions button {
        width: 100%;
    }
}
