/* Reset básico */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}*/

/*body {
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}*/

/*.container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    
}*/

/* Estilo base para las tarjetas de estadísticas */
.stats-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 60%;
}

/* Cada columna de estadística */
.stat-column {
    text-align: center;
    /*flex: 1;*/
    padding: 0 10px;
}

/* Valor grande de la estadística */
.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.2;
}

/* Etiqueta descriptiva */
.stat-label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    max-width: 120px;
    margin: 0 auto;
}






/* Responsive para móviles */
@media (max-width: 600px) {
    .stats-card {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .stat-column {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }

    .stat-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-label {
        max-width: 100%;
    }

    .with-icons .stat-column {
        border-bottom: 1px solid #f0f0f0;
    }

    .minimal {
        flex-direction: row;
        gap: 10px;
        padding: 15px;
    }

    .minimal .stat-column {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 400px) {
    .minimal {
        flex-direction: column;
        gap: 15px;
    }
}

/* Versión con separadores entre columnas */
.stats-card.with-separators .stat-column {
    border-right: 1px solid #eaeaea;
}

.stats-card.with-separators .stat-column:last-child {
    border-right: none;
}

/* Efecto hover */
.stat-column:hover .stat-value {
    color: #3483fa;
    transition: color 0.2s ease;
}

.stat-column:hover .stat-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}