
.calendario {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 15px;
padding: 10px;
grid-auto-rows: auto;
}

.calendario .dia {
background-color: #018057;
padding: 15px;
text-align: center;
border-radius: 5px;
font-size: 14px;
color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calendario .dia hr {
  border-color: #0d996c;
}

.calendario .dia-hoy {
  background-color: #05573d !important;
}

.calendario .dia-hoy hr {
  border-color: #0b7956 !important;
}

.calendario .dia h5 {
  color: #fbf5d7;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

/*
.calendario .dia:hover {
background-color: #c2e0ff;
cursor: pointer;
}
*/

.calendario .dia.cerrado {
background-color: #f8d7da;
color: #721c24;
}

/*
@media screen and (min-width: 768px) {
.calendario {
grid-template-columns: repeat(4, 1fr);
}
}

@media screen and (max-width: 768px) {
.calendario {
grid-template-columns: repeat(3, 1fr);
}
}
*/

.accordion-button:not(.collapsed) {
  background-color: #192335;
  color: #fff;
}

/* quitar la flecha del acordeón */
.accordion-button.no-toggle::after {
  display: none;
}

/* evitar cursor de mano, ponerlo normal */
.accordion-button.no-toggle {
  cursor: default;
}

.venue-options ul {
display: flex;
justify-content: center;
padding: 0;
margin: 0;
list-style: none;
flex-wrap: wrap;
}

.venue-options li {
margin: 0 10px;
flex: 1 1 auto;
}

.venue-options a {
display: block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
text-align: center;
transition: background-color 0.3s, color 0.3s;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.venue-options a:hover {
background-color: #0056b3;
color: #ffffff;
}

.venue-options a:focus {
outline: none;
}

@media (max-width: 768px) {
.venue-options a {
font-size: 14px; 
padding: 8px 16px; 
}

.venue-options li {
margin: 5px; 
}
}

@media (max-width: 480px) {
.venue-options a {
font-size: 12px;
padding: 6px 12px; 
}

.venue-options li {
margin-right: 5px 0; 
}
}

ul.horario-detalle {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-between;
background-color: #f9f9f9;
border-radius: 8px;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ul.horario-detalle li {
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
}

ul.horario-detalle li p {
margin: 0;
font-weight: bold;
}

ul.horario-detalle li p span {
font-weight: normal;
color: #555;
}

@media (max-width: 600px) {
ul.horario-detalle {
flex-direction: column;
align-items: flex-start;
}
}

.hora-btn {
background-color: #8EA8C3;
width: 150px;
border: none;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

.hora-btn:hover {
background-color: #084D6E; 
}

.arrow-button {
  display: inline-flex;
  margin-bottom: 25px;
  align-items: center;
  padding: 5px 15px 10px;
  background-color: #097e52;;
  color: white; 
  text-decoration: none; 
  border-radius: 5px; 
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease; 
}

.arrow-button:hover {
background-color: #192335; 
}

.arrow-icon {
margin-right: 8px; 
font-size: 30px;
color: #fff;
}

.time-slot.inactive {
background-color: #ccc;
color: #888;
cursor: not-allowed;
}

.time-slot.inactive span {
pointer-events: none;
}

.time-slot.inactive i {
display: none;
}
.time-slot.checked .time-slot-text {
    color: black; /* Asegúrate de que el texto sea visible sobre el fondo verde */
}
.ui-datepicker {
background-color: #e8f5e9 !important;
border-radius: 10px !important;
border: 1px solid #4caf50 !important;
}
.ui-datepicker-header {
background-color: #4caf50 !important;
color: white;
}
.ui-datepicker-prev, .ui-datepicker-next {
background-color: #4caf50;
color: white;
}
.ui-datepicker-title {
color: white;
}
.ui-state-active, .ui-state-hover {
background-color: #388e3c;
color: white;
}
.ui-state-disabled {
background-color: #b2dfdb !important;
}
.time-date-card {
height: 100%;
}
.time-slot {
padding: 10px;
background-color: #f1f1f1;
border-radius: 5px;
text-align: center;
cursor: pointer;
}
.time-slot.checked {
background-color: #4caf50;
color: white;
}
.time-slot.inactive {
background-color: #e0e0e0;
cursor: not-allowed;
}



/* Estilo base para el grid */
.box-grid {
  display: grid;
  grid-template-columns: 200px 170px auto;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s;
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
  padding-left: 15px;
}

.box-grid:hover {
  background-color: #ddf0ea;
  border-radius: 10px;
}

/* Áreas para móvil (se asignan abajo con media query) */
.entrada-nombre,
.entrada-cantidad,
.entrada-importe {
  height: 38px;
  display: flex;
  align-items: center;
  color: #111;
  overflow: hidden;
}

.entrada-nombre {
    font-weight: bold;
}

.entrada-bloque-totales {
  font-size: 22px;
  padding: 10px 15px;
  background: #e4f5f0;
  border-radius: 15px;
}

.entrada-bloque-totales .entrada-nombre,
.entrada-bloque-totales .entrada-cantidad,
.entrada-bloque-totales .entrada-importe input {
    color: #018057;
    font-weight: bold;
}

/* Caja de cantidad con botones */
.entrada-cantidad .input-tipos-entrada-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c3e1d8;
  border-radius: 35px;
  overflow: hidden;
  height: 38px;
  background-color: white;
}

/* Botones de + y - */
.input-tipos-entrada-btn {
  border: 1px solid #018057;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  color: #018057;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-tipos-entrada-btn:hover {
  background-color: #018057;
  color: white;
  border-color: white;
}

/* Input numérico */
.input-tipos-entrada-box input[type="number"] {
  width: 60px;
  text-align: center;
  border: none;
  height: 100%;
  padding: 0;
  background-color: transparent;
}

/* Responsive: reestructura el grid */
@media (max-width: 768px) {
  .box-grid {
    padding-left: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "nombre nombre"
      "cantidad importe";
  }

  .entrada-nombre {
    grid-area: nombre;
  }

  .entrada-cantidad {
    grid-area: cantidad;
  }

  .entrada-importe,
  .entrada-importe input {
    grid-area: importe;
    justify-self: flex-end;
  }

  .entrada-nombre,
  .entrada-cantidad,
  .entrada-importe {
    justify-content: flex-start;
  }
}

.bloquesEntradaTotal {
  padding: 0 !important;
  border: none;
  width: auto;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden;
  background-color: transparent;
}

#hero-image {
  transition: opacity 1s ease-in-out;
}

.temporizador-personalizado {
    transition: opacity 0.3s ease;
    position: absolute;
    top: 15px; 
    right: 20px;
    background-color: #192335;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: bold;
    z-index: 10;
    color: rgb(245, 214, 68); /* amarillo mostaza */
}

@media (max-width: 768px) {
    .container-personalizado {
        margin-top: 30px !important;
    }
}

.boton-alerta {
    border: none;
    outline: none;
    box-shadow: none;
}
