@charset "UTF-8";
 /* === CONTENEDOR PRINCIPAL === */
.map-container {
    max-width: 400px;
    margin: auto;
    cursor: pointer; /* Aparece "manito" al pasar el mouse */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

  /* === IMAGEN DEL MAPA === */
.map-image {
    width: 100%;
    height: auto;
    /*border-radius: 10px;*/

    /* Sombra elegante */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/

    /* Transición suave para agrandar al pasar el mouse */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Fallbacks para compatibilidad */
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

  /* === EFECTO AL PASAR EL MOUSE === */
.map-image:hover {
    transform: scale(1.05); /* Agranda un 5% */
    /*box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); /* Más profundidad */
}



/* === Reserva ==== */
    #resultado {
            margin-top: 10px;
            border: 1px solid #ccc;
            padding: 15px;
            background-color: #f9f9f9;
        }
        .verde {
            color: #4CAF50;
        }
        .oculto {
            display: none;
        }



   /* === Calendario === */      
   
  #DisponibilidadActual {
            margin-top: 10px;
            padding: 15px;
    }
    
.dia-seleccionado {
    background-color: #3cb371 !important; /* verde */
    color: white !important;
    font-weight: bold;
    border-radius: 5px;
}

        
.calendario-contenedor {
  max-width: 600px;
  margin: left;
  text-align: center;
  font-family: sans-serif;
}

.mes-titulo {
  font-size: 20px;
  margin-bottom: 10px;
  color: #4CAF50;
  font-weight: bold;
}

.dias-semana, .dias-calendario {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.dia-nombre, .dia {
  padding: 10px;
  background: #f0f0f0;
  border-radius: 5px;
}

.dia.vacio {
  background: none;
}

.dia.no-disponible {
  color: gray;
  text-decoration: line-through;
  background: #e0e0e0;
  cursor: not-allowed;
}

.dia.seleccionable {
  cursor: pointer;
  background-color: #ffffff;
}

.dia.seleccionable:hover {
  background-color: #d4f0d4;
}        

  /* === RESPONSIVE: Dispositivos pequeños === */
  @media (max-width: 480px) {
    .map-container {
      padding: 0.5rem;
    }

    .caption {
      font-size: 0.95rem;
    }
  }
  
  
 .button_env {
   padding: 10px;
   background-color: #4CAF50;
   color: white;
   border: none;
   border-radius: 4px;
   cursor: pointer;
   margin-top: 15px;
   margin-bottom: 15px;
  } 
  
    /* Estilos del popup */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .popup-box {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      animation: fadeIn 0.3s ease;
    }

    .popup-box h2 {
      margin-top: 0;
      color: #333;
    }

    .popup-box p {
      color: #555;
    }

    .popup-box button {
      margin: 10px 5px 0 5px;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      background-color: #2a7a2c;
      color: white;
      font-weight: bold;
    }

    @keyframes fadeIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    
    
/*css pagina reserva*/
.imagen-flotante {
  float: none; /* O "float: left" para la izquierda */
  width: 250px; /* Ajusta el ancho de la imagen según sea necesario */
  margin: 10px; /* Espacio alrededor de la imagen */

}

.ContPagreserv {
  display: flex;
  min-height: 930px;
  height: 100vh;
}

.ContPagreservCal {
  display: flex;
  min-height: 430px;
  height: 100vh;
}

.InstruccionesResv {
    margin-top: 106px;
    padding: 10px;
    color: #000;
}
    
.secizquierda {
    width: 400px;
}
/* Responsive: se apilan en pantallas pequeñas */
@media (max-width: 768px) {
  .ContPagreserv {
    flex-direction: column;
  }

.izquierda {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}


.Reservcontainer {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500px;
    box-sizing: border-box;
    overflow-y: auto;
}

.derecha {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}


.button_reserv {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50 /*#387a80*/;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button_reserv:hover {
    background-color: #218838;
}

/* Estado deshabilitado */
.button_reserv:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.tabla-servicios {
  width: 100%;
  border-spacing: 10px;
}

.tabla-servicios td {
  vertical-align: top;
  font-size: 14px;
  color: #333;
}

.tabla-servicios i {
  font-size: 18px;
  color: #333;
  margin-right: 10px;
}


/* Grupos de formulario reserva */
.form-group {
    margin-bottom: 10px;
}

.date-group, .guest-group {
    display: flex;
    gap: 20px; /* Espacio entre los campos */
}

.date-field, .guest-field {
    flex: 1; /* Ocupan el mismo espacio */
}

.linedec {
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #b1a9a9;
    padding-bottom: 10px;
}

.linedec2 {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid #b1a9a9;
    padding-bottom: 10px;
}

.button_env {
   padding: 10px;
   background-color: #4CAF50;
   color: white;
   border: none;
   border-radius: 4px;
   cursor: pointer;
   margin-top: 15px;
   margin-bottom: 15px;
  }

textarea {
  resize: none;
  font-size: 14px;
  display:inline;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: justify;
  
}

.ptitulointer {
   font-size: 14px;
   font-weight: bold;
   color: #000;
   padding: 20px 10px 10px 0;
}

.pchica {
   font-size: 10px;
   font-weight: bold;
   color: #333;
   padding: 0 8px 8px 0;
}  

.ulclass {
   font-size: 14px;
   color: #333;
}
.Row_label1{
display: table-row;
}

.Cell_Label1{
display: table-cell;
width: 165px;
}

.Cell_Label2{
display: table-cell;
width: 90px;
}

.Cell_Label3{
display: table-cell;
width: 125px;
}


.formReg{
      display: table;
      margin: 0 auto;
      width:400px;
      }

.InicioSesion{
      display: table;
      margin: 0 auto;
      width:600px;
      }
     
.Rowtitle {
    font-family: Arial, sans-serif;
    
}

#titleRow {
    font-size: 24px;
    color: #4CAF50;
} 

#titleRowRes {
    font-size: 24px;
    color: #4CAF50;
} 

#titleRowAux {
    font-size: 24px;
    color: #000;
}


.Group-label{
   font-weight: bold;
   font-size: 14px;
   display:inline;
}   

.Group-label_res{
   font-weight: none;
   font-size: 14px;
   display:inline;
}

.Group-input,  select {
    width: 160px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
   
}

.Group-input-em, select {
    width: 325px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}


.Group-input_resv,  select {
    width: 80px;
    margin-top: 4px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
   
}


.mensajeoblig{
    font-size: 10px;
}

/* ----- -----  Contenedor Formulario ----- ----- */

.ContainerForm {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500px;
    box-sizing: border-box;
    overflow-y: auto;
}

.PrincipalContainer {
   display: flex;
  justify-content: center;
}


/* ----- -----  Estilos para Validacion ----- ----- */


.formulario__input-error {
	font-size: 08px;
	margin-bottom: 0;
	display: none;
}


.formulario__mensaje-exito{
    font-size: 08px;
	margin-bottom: 0;
	display: none;
}

.toggle-password {
            cursor: pointer;
        }
        
.mensaje_ingreso {
    font-size: 09px;
    font-weight: bold;
    color: black;
	display: block;
}

.formulario__mensaje-exito-activo {
	display: block;
}

.formulario__input-error-activo {
    font-size: 09px;
    font-weight: bold;
    color: red;
	display: block;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}

.Group-input2:focus {
	border: 3px solid #0075FF;
	outline: none;
}


.Group-input:focus {
	border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.Group-input-em:focus {
	border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

/* ----- -----  Estilos para Validacion ----- ----- */

.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}


.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}


.formulario__grupo-incorrecto .Group-label {
	color: #bb2929;
}


.formulario__grupo-incorrecto .Group-input {
	border: 3px solid #bb2929;
}


.formulario__grupo-incorrecto .Group-input-em {
	border: 3px solid #bb2929;
}
