/* ========================================= */
/* ===== ESTILOS DEL HORARIO Y CALENDARIO (DARK) ===== */
/* ========================================= */

.horario-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

/* --- Tarjeta de Información (Izquierda) --- */
.horario-card {
    background-color: #1E1E1E; /* Gris oscuro */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #fff;
}

.horario-icon {
    font-size: 3rem;
    color: #FFD700; /* Dorado */
    margin-bottom: 20px;
}

.horario-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.horario-lista {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.horario-lista li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #eee;
    font-size: 1.05rem;
}

.horario-lista li strong { color: #FFD700; }
.nota-cita { font-size: 0.9rem; color: #888; margin-top: 25px; font-style: italic; }

/* --- EL CALENDARIO (Derecha) --- */
.calendar-wrapper {
    background: #1E1E1E;
    width: 380px; /* Ancho fijo para que no se deforme */
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #FFD700; /* Borde dorado elegante */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.current-date {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFF;
    text-transform: capitalize;
    margin: 0;
}

.calendar-icons span {
    height: 38px;
    width: 38px;
    color: #888;
    background: #2D2D2D;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 0 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.calendar-icons span:hover { background: #FFD700; color: #000; }

.calendar-body ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    padding: 0;
}

.calendar-body .weeks li {
    font-weight: 600;
    width: calc(100% / 7);
    color: #FFD700; /* Días de la semana dorados */
    margin-bottom: 10px;
}

.calendar-body .days { margin-top: 5px; }

.calendar-body .days li {
    width: calc(100% / 7);
    margin-top: 5px;
    height: 40px;
    line-height: 40px;
    position: relative;
    z-index: 1;
    cursor: default;
    color: #ccc;
    font-size: 0.95rem;
}

/* El día de hoy activo */
.calendar-body .days li.active { color: #000; font-weight: bold; }
.calendar-body .days li.active::before {
    content: "";
    position: absolute;
    height: 35px;
    width: 35px;
    background: #FFD700; /* Círculo dorado para hoy */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.calendar-body .days li.inactive { color: #444; }