.titulo-reservas{
    padding: 8px!important;
    text-align: center !important;
    color: #933e43!important;
    text-decoration: underline;
    margin-bottom: 0px!important;
}


.parrafo-reservas{
    text-align: justify !important;   
    color: #2F1B1A !important;
    padding: 8px!important;
    margin-bottom: 0px!important;
}


.form-reservas {
    background: transparent;
    padding: 15px;
    border-radius: 5px;
    width: auto;
    font-family: Arial, sans-serif;
}


.form-reservas label {
    display: block;
    /* font-weight: bold; */
    color: #2F1B1A ;
    margin-top: 10px;
    font-size: 0.9rem;
}
.form-reservas label input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
}

.form-reservas input,
.form-reservas select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #FFFFFF;
}

.form-reservas input[type="checkbox"] {
    width: auto;
}

.form-reservas a {
    color: #2F1B1A;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.form-reservas a:hover {
    text-decoration: underline;
}

.form-reservas .g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.form-reservas input[type="submit"] {
    width: 100%;
    background-color: #2F1B1A   ;
    color: #FFD166  ;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 2px 2px 5px 1px #F2E1C2;
    transition: all 0.3s ease;
}


.form-reservas input[type="submit"]:hover{
    
    background-color: #FFD166 ;
    color: #933e43  ;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}


.captcha-error {
    color: #933e43 ;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 0px !important;
    font-size: 0.8rem;
}

.g-recaptcha {
     margin: 20px 0; 
}


/****Estilo para el datepicker***/


/*icono del calendario en fecha*/
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper input {
    padding-right: 10px;
    /* espacio para el icono */
}

.input-wrapper i {
    position: absolute;
    right: 10px;
    color: #b4b4b4;
    pointer-events: none;
}

.ui-datepicker td.dia-festivo.ui-datepicker-unselectable.ui-state-disabled span {
    color: rgba(0, 0, 0, 0.308) !important;
    font-weight: bold;
    background-color: #ffcccc !important;
    cursor: not-allowed;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #933e43 !important;
    color: #FFD166!important;

}





/* Agrupamos todos los selects en un contenedor flexible */
.form-reservas .circunstancias-especiales .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    margin-top: 10px;
}

/* Cada columna toma igual espacio (en pantallas grandes son 5 columnas en línea) */
.form-reservas .circunstancias-especiales .col {
    flex: 1 1 calc(15% - 10px); /* 5 columnas con margen */
    min-width: 150px;
}

/* En pantallas pequeñas: 2 columnas por fila */
@media screen and (max-width: 768px) {
    .form-reservas .circunstancias-especiales .col {
        flex: 1 1 calc(50% - 10px);
    }
}

/* Estilo del aviso debajo */
.form-reservas .circunstancias-especiales small {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #933e43;
}

.form-reservas textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #FFFFFF;
    resize: vertical; /* Permite redimensionar hacia abajo/arriba */
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}


/*Enlaces legales*/
.form-reservas label a {
    color: #933E43;
    text-decoration: none;
}

.form-reservas label a:hover {
    text-decoration: underline;
}



/*Estilos del modal de aviso, reserva realizada*/
.custom-modal {
    display: block; /* Mostrar el modal */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.custom-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: #000;
}
.custom-btn {
    margin-top: 15px;
    padding: 10px 20px;
   background-color: #933e43;
    color: #F2E1C2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.custom-btn:hover {
    background-color: #2F1B1A;
    color: #FFD166;
}

