body {
  background: #f7f7f7; /* 👈 el gris de fondo a toda la página */
  font-family: Arial, sans-serif;
}
.container-reservas {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  margin: 20px auto;
  padding: 10px;
}

.container-reservas .ticket {
  background: #fff;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container-reservas .highlight-ticket {
  background: #e7f1ff;
  border-left: 8px solid #0d6efd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.25);
}

.container-reservas .ticket strong {
  display: inline-block;
  width: 80px;
}

.container-reservas .fecha {
  font-size: 18px;
  color: #666;
  margin-bottom: 5px;
}

.container-reservas h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.input-group-text {
  width: 90px; /* ajusta según prefieras */
  justify-content: center;
}

.datos-reserva,
.card {
  border-radius: 12px;
}

.datos-reserva strong,
.card strong {
  color: #333;
  font-weight: 700;
}

/* Contenedor horizontal deslizable */
.container .album-wrapper {
  display: flex;
  flex-wrap: nowrap;
  /* ← evita que bajen */
  overflow-x: auto;
  /* ← scroll horizontal */
  gap: 10px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  /* Firefox */
}

/* Barra de scroll más elegante */
.container .album-wrapper::-webkit-scrollbar {
  height: 8px;
}

.container .album-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

/* Cuadro para subir foto */
.container .add-photo-box {
  min-width: 120px;
  height: 120px;
  border: 2px dashed #bbb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #f9f9f9;
  flex-shrink: 0;
  /* ← evita que se achique */
  transition: 0.2s ease;
}

.container .add-photo-box:hover {
  background: #f1f1f1;
  border-color: #999;
}

.container .add-photo-content {
  text-align: center;
  color: #666;
}

.container .add-icon {
  font-size: 38px;
  font-weight: bold;
  display: block;
  line-height: 35px;
}

.container .label-text {
  margin: 0;
  font-size: 14px;
}

/* Cada imagen */
.container .photo-item {
  min-width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  /* ← evita que se compriman */
}

.container .photo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.container .photo-thumb:hover {
  filter: brightness(0.9);
}


