/**
 * ========================================================================
 * ARCHIVO: reserva-express.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 1.0.0
 * FECHA DE PRODUCCIÓN: 2026-09-15
 * DESCRIPCIÓN: Estilos del módulo "Reserva Express" (mod_reserva_express.php).
 * ========================================================================
 */

/* CONTENEDOR BASE (MODO ESCRITORIO) */
.nxs-reserva-contenedor {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    max-width: 650px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.nxs-inputs-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 5px;
}

.nxs-input-item {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nxs-reserva-contenedor input {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 5px !important;
    font-size: 0.9rem !important;
    height: auto !important;
    width: 100%;
    text-align: center;
}

.nxs-reserva-contenedor input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.nxs-reserva-contenedor .separador {
    width: 1px;
    height: 25px;
    background: rgba(212, 175, 55, 0.4);
    margin: 0 5px;
}

.btn-reserva-nxs {
    background: var(--mw-btn-primary-bg);
    color: var(--mw-btn-primary-text) !important;
    border: none;
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

/* --- DISEÑO PARA MÓVILES (2 niveles + ancho mínimo 300px) --- */
@media (max-width: 640px) {
    .nxs-reserva-contenedor {
        flex-direction: column;
        border-radius: 25px;
        padding: 10px 5px;
        max-width: none;
        min-width: 300px;
        width: 90%;
        margin: 20px auto;
        gap: 20px;
    }

    .nxs-inputs-wrapper {
        width: 100%;
        flex: none;
        justify-content: space-between;
        gap: 10px;
    }

    .nxs-input-item {
        flex: 1;
    }

    .btn-reserva-nxs {
        width: 100%;
        border-radius: 15px;
        padding: 10px;
        font-size: 1rem;
        white-space: normal;
    }

    .nxs-reserva-contenedor .separador {
        height: 30px;
    }
}