/* Estilos para el Calendario y Horarios */
.calendar-container {
    margin-bottom: 20px;
}

#calendar {
    max-width: 100%;
    margin: 0 auto;
}

/* Estilo para los días deshabilitados */
.fc-day-disabled {
    background-color: #f5f5f5 !important;
    cursor: not-allowed;
}

.time-slots-container {
    margin-top: 20px;
    display: none; /* Oculto por defecto */
}

#time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.time-slot-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.time-slot-btn:hover {
    background-color: #0056b3;
}

.time-slot-btn.selected {
    background-color: #28a745; /* Verde para el seleccionado */
    font-weight: bold;
}

#slots-loader {
    text-align: center;
    padding: 20px;
}
