/* Dashboard Page CSS */

.dashboard-section {
    min-height: 80vh;
    padding: 60px 20px;
    background: #f5f5f5;
}

.dashboard-section h1 {
    margin: 0 0 40px 0;
    font-size: 36px;
    color: #1a1a2e;
    text-align: center;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-card h2 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #1a1a2e;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.account-info p,
.subscription-info p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
}

.status-active {
    color: #28a745;
    font-size: 18px;
}

.status-inactive {
    color: #dc3545;
    font-size: 18px;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-actions .btn {
    width: 100%;
}

.nav-links .active {
    color: #4169e1;
    font-weight: bold;
}
