.booking-reservation {

  .container-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .grid-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .card-title {
    font-size: 16px;
  }


  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    color: #212529;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  thead {
    background-color: #f8f9fa;
  }

  th, td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: top;
    text-align: left;
  }
}



/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  z-index: 1000;
  visibility: hidden; /* Está oculto por defecto */
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Cuando se muestra el modal */
.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  width: 70%;
  height: 80%;
  overflow-y: scroll;
}

/* Fondo oscuro del modal */
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Botón de cierre "X" */
.modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
