.reports-page { max-width: 1000px; }

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.report-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.report-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-2px);
}

.report-card__icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
}

.report-card__icon svg { width: 20px; height: 20px; }

.report-card__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.report-card__desc {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Report detail view */
.report-detail { max-width: 1000px; }

.report-detail__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.report-date-range {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-section {
    margin-bottom: var(--space-xl);
}

.report-section__title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-line-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.report-line-item--total {
    font-weight: 700;
    font-size: var(--text-base);
    border-bottom: 2px solid var(--border-default);
    padding: var(--space-sm) 0;
}

.report-line-item--grand-total {
    font-weight: 800;
    font-size: var(--text-lg);
    border-top: 2px solid var(--border-default);
    border-bottom: 3px double var(--border-default);
    padding: var(--space-sm) 0;
    margin-top: var(--space-sm);
}

.report-line-item__label { color: var(--text-primary); }
.report-line-item__value { font-variant-numeric: tabular-nums; text-align: right; }
.report-line-item--indent .report-line-item__label { padding-left: var(--space-lg); color: var(--text-secondary); }

@media (max-width: 768px) { .report-grid { grid-template-columns: 1fr; } }
