/**
 * Стили для страницы аналитики модерации
 * Версия: 1.0.0
 */

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: fadeIn 0.3s ease-out;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

/* Улучшенные прогресс-бары */
.progress-fill {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}

/* Адаптивность */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}

/* Улучшенные таблицы */
tbody tr {
    transition: background-color 0.2s;
}

/* Кнопки */
button {
    transition: all 0.2s;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

button:active {
    transform: translateY(0);
}

