/* Color tokens + body font + dark mode live in theme.css (loaded first). */
.page-body { padding: 24px 32px 48px 32px; }

.report-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.report-card {
    flex: 1;
    min-width: 240px;
    max-width: 360px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: left;
}
.report-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.report-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.report-card-actions {
    display: flex;
    gap: 8px;
}
.report-card-actions button {
    flex: 1;
    padding: 7px 10px;
    font-size: 13px;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
}
.report-card-actions button:hover {
    background: var(--row-hover);
}
.report-card-actions button.primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.report-card-actions button.primary:hover { opacity: 0.88; }
