/* Estilos solo para el Dashboard */
.dashboard-counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.counter-box {
    background-color: #ffffff;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 25px;
    flex: 1;
    min-width: 220px;
    max-width: 30%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.counter-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.counter-number {
    font-size: 3.5em;
    font-weight: 700;
    color: #007bff;
    margin: 0;
}