body { 
    font-family: 'Inter', sans-serif; 
    background-color: #0a0a0a; 
    color: #ffffff; 
}

/* Estilos para los campos del formulario */
.input-premium {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #282828;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.input-premium:focus {
    outline: none; 
    border-color: #f0712c; 
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(240, 113, 44, 0.1);
}

/* Scrollbar personalizado para los horarios y modales */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 10px; }

.modal-scrollbar::-webkit-scrollbar { width: 6px; }
.modal-scrollbar::-webkit-scrollbar-track { background: transparent; }
.modal-scrollbar::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 10px; }

/* Botones principales */
.btn-solid {
    background-color: #f0712c;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}
.btn-solid:hover:not(:disabled) {
    background-color: #cc5f24;
    transform: translateY(-2px);
}
.btn-solid:disabled {
    cursor: not-allowed;
}