.dashboard-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gm-bg);
    color: var(--gm-text);
    font-family: 'Outfit', sans-serif;
    padding: 14px 18px;
    box-sizing: border-box;
}

.dashboard-main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-card {
    background: var(--gm-surface);
    border: 1px solid var(--gm-border);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: var(--gm-shadow-sm);
}

.dashboard-card h1,
.dashboard-card h2 {
    margin: 0 0 12px;
    color: var(--gm-text);
}

.dashboard-card h1 {
    font-size: 2rem;
    font-weight: 800;
}

.dashboard-card h2 {
    font-size: 1.2rem;
    font-weight: 800;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.primary-action {
    border: 1px solid #5ea2e4;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gm-brand-a), var(--gm-brand-b));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 16px;
    cursor: pointer;
}

.primary-action:hover {
    filter: brightness(1.04);
}

.recent-activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent-activity-item {
    border: 1px solid var(--gm-border);
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--gm-surface-soft);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.98rem;
}

.recent-activity-title {
    font-weight: 700;
}

.recent-activity-time {
    color: var(--gm-text-muted);
    font-size: 0.9rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric-item {
    border: 1px solid var(--gm-border);
    border-radius: 12px;
    background: var(--gm-surface-soft);
    padding: 12px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gm-text-muted);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1.1;
}

.muted {
    color: var(--gm-text-muted);
}

@media (max-width: 900px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
