﻿.counters-container {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.counters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.counters-title {
    font-size: 24px;
    font-weight: 600;
    color: #343a40;
}

.counters-date {
    font-size: 16px;
    color: #6c757d;
}

.counters-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.counter-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .counter-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.counter-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.counter-value {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
}

.counter-label {
    font-size: 14px;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 0.5s;
}
