/* Стили для переключения таблиц */
.table-switcher {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.table-switcher button {
    margin-right: 10px;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    position: relative;
    bottom: -1px;
}

.table-switcher button.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Стили для таблицы отчета */
.report-table-container {
    overflow-x: auto;
    margin-top: 15px;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.report-table th, .report-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.report-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.report-table tr:hover {
    background-color: #f5f5f5;
}

/* Стили для общего KPI */
.total-kpi {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Добавляем в styles.css */
.loading {
    padding: 10px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.no-results {
    padding: 10px;
    text-align: center;
    color: #999;
}

