@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

.provis-weekly-container {
    font-family: 'Outfit', sans-serif;
    color: #333;
    width: 100%;
    max-width: 100%;
    /* Forzamos el 100% del ancho */
    margin: 0;
    padding: 20px;
}

/* Tabs / Filters Look & Feel (Ahora como cabecera informativa o navegación rápida) */
.box-filter-custom-single-centro-reserva {
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    padding: 10px 0;
    z-index: 10;
}

.list-filter-custom-03-single-centro-content-filter-reserva {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    /* Evitamos que rompa línea */
    gap: 10px;
    justify-content: space-between;
    overflow-x: auto;
}

.item-filter-custom-03-single-centro-content-filter {
    flex: 1;
    min-width: 120px;
}

.link-filter-custom-03-single-centro-content-filter {
    display: block;
    text-align: center;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #d1e3ee;
    border-radius: 25px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.filter-btn-custom-01 {
    color: #005581;
    font-weight: 600;
    font-size: 14px;
}

/* Day Column Visibility - Ahora todas visibles */
.provis-day-column {
    display: block;
    flex: 1;
    min-width: 280px;
}

.provis-day-header {
    display: block;
    /* Volvemos a mostrar el header del día */
    background: #f1f1f1;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
    border-radius: 4px;
    text-transform: uppercase;
}

.provis-weekly-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* Permitir scroll horizontal si hay muchos días */
    padding-bottom: 20px;
    width: 100%;
}

/* Card Styling */
.provis-card-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 15px;
    margin-bottom: 15px;
    border-bottom: 4px solid #eee;
    transition: transform 0.3s ease;
}

.provis-day-clases {
    display: flex;
    flex-direction: column;
    /* Clases una debajo de otra */
    gap: 10px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar premium */
.provis-day-clases::-webkit-scrollbar {
    width: 6px;
}

.provis-day-clases::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.provis-day-clases::-webkit-scrollbar-thumb {
    background: #005581;
    border-radius: 10px;
}

/* 
 * Personalización de colores de etiquetas (badges)
 * Puedes sobrescribir los colores de la API usando !important y la clase provis-badge-[nombre-slug]
 */

/* Ejemplo: cambiar color a ALB - CARDIO */
/* .provis-card-badge.provis-badge-alb-cardio { background-color: #00bcd4 !important; } */

/* Ejemplo: cambiar color a ALB - TONO */
/* .provis-card-badge.provis-badge-alb-tono { background-color: #3f51b5 !important; } */

/* Ejemplo: cambiar color a ALB - BODY MIND */
/* .provis-card-badge.provis-badge-alb-body-mind { background-color: #4caf50 !important; } */

/* Ejemplo: cambiar color a ALB - ACTIVITATS AIGUA */
/* .provis-card-badge.provis-badge-alb-activitats-aigua { background-color: #ff9800 !important; } */