.toggle.android {
  border-radius: 0px;
}

.toggle.android .toggle-handle {
  border-radius: 0px;
}

.dropdown-item{
  cursor: pointer;
}

#toast {
  position: fixed;
  top: 20px;
  right: 20px;
  animation: slideDown 0.5s;
  animation-fill-mode: forwards;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 20px;
  }
}


/* Ajustes generales de la tabla */
#tableDataTables {
  width: 100%; 
  max-width: 100%; 
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

/* Contenedor para controlar el scroll de la tabla */
.custom-scroll-container {
  max-width: 100%; 
  overflow-x: hidden; 
  padding: 10px; 
}

/* Tabla interna para permitir scroll solo cuando es necesario */
.custom-scroll-container .table-responsive {
  display: block;
  overflow-x: auto; 
}

/* Ajustes para paginación y otros elementos */
.custom-pagination .page-link {
  padding: 10px 15px;
  font-size: 14px;
  background-color: #fff;
  color: #6c757d;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Estilo de los encabezados de columna */
#tableDataTables th {
  background-color: #f6f9fc;
  color: #333;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
}

/* Estilo de las celdas de la tabla */
#tableDataTables td {
  padding: 1px 10px;
/*  border-bottom: 1px solid #ddd;*/
}

/* Estilo del buscador */
.argon-dataTables .dataTables_filter {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.argon-dataTables .dataTables_filter {
    font-size: 14px;
    font-weight: normal;
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
  }

  .dataTables_info {
    font-family: 'Open Sans', sans-serif; /* o la fuente que estés utilizando */
    font-size: 14px;
    color: #6c757d;
  }

  .custom-pagination .page-link {
    padding: 6px 12px !important;
    font-size: 14px !important;
    background-color: #fff !important;
    color: #6c757d !important;
    border: 0px solid #ddd !important;
    border-radius: 0 !important;
    width: auto !important;
  }

.user-info {
  margin-left: 19px;
  margin-top: 5px;
}

.ajuste_boton{
  margin-top: -8px;
}

.card-profile-bottom{
  margin-top: 5rem !important;
}

.sidenav  {
  z-index: 1 !important; /* o un valor más alto */
}

.habilitado-checkbox {
  cursor: pointer;
}

#error_div, #error_div_hospedaje {
  color: white;
  background-color: #ff0000; /* Agregué fondo rojo para errores */
}

:root {
  --color-primario: #ccc;
  --ancho-habitacion: 420px;
  --color-fondo: #f0f0f0;
}

* {
  box-sizing: border-box;
}

.habitacion {
  width: var(--ancho-habitacion);
  height: auto;
  border: 1px solid var(--color-primario);
  padding: 10px;
  margin: 10px;
  display: inline-block;
}

.titulo {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.camas {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cama {
  width: 80px;
  height: 120px;
  border: 1px solid var(--color-primario);
  margin: 10px;
  display: inline-block;
  background-color: var(--color-fondo);
}

.cama.doble {
  width: 140px;
}

.cama.simple {
  width: 80px;
}

#viajeros {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  background-color: var(--color-fondo);
  padding: 10px;
  border: 1px solid var(--color-primario);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#viajeros h4 {
  margin-top: 0;
}

.viajero {
  padding: 10px;
  border-bottom: 1px solid var(--color-primario);
  cursor: move;
  background-size: 20px 20px;
}

.viajero:hover {
  background-color: #f9f9f9;
}

.viajero:active {
  background-color: #f5f5f5;
  transform: scale(0.9);
}

.viajero::before {
   content: "\f047";
  font-family: FontAwesome;
  margin-right: 10px;
}

.img-profile {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.titulo {
  cursor: move; /* Cambia el cursor a una mano */
  display: flex;
  align-items: center;
}

.titulo i {
  margin-right: 10px;
}
.cama .viajero {
  font-size: 12px; /* Reduce el tamaño de la letra */
  padding: 5px; /* Agrega un poco de padding */
  border: none; /* Elimina la bordura */
  background-color: transparent; /* Elimina el fondo */
  /* Otros estilos que desees agregar */
}

.cama .viajero::before {
  content: none; /* Elimina el ícono */
}

.viajero {
  z-index: 1; /* Ajusta el valor según sea necesario */
}
#viajeros {
  z-index: 2; /* Ajusta el valor según sea necesario */
}

#viajeros ul {
  overflow-y: auto;
  max-height: 300px; /* ajusta el alto según tus necesidades */
}

.etiqueta{
  position: absolute;
  left: 341px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #007bff;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  text-align: center;
}