﻿/* ===== Страница отчётов (фон на всю страницу) ===== */
.reports-page {
    min-height: 100vh;
    padding: 1.5rem;
    background: white;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* ===== Заголовок ===== */
.reports-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
    border: 1px solid #e8ecff;
}

.reports-header h1 {
    margin: 0;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.75rem;
}

.reports-header .header-icon {
    color: #667eea;
    margin-right: 0.75rem;
}

.reports-header .total-count {
    color: #718096;
    font-size: 0.9rem;
}

.reports-header .total-count strong {
    color: #2d3748;
}
