/* Stijlen voor de boekingsknoppen */
.booking-link {
  display: block;
  background-color: #1f456e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 1.5rem;
  text-align: center;
  transition: background-color 0.3s;
  width: fit-content;
}

.booking-link:hover {
  background-color: #15304d;
  color: white;
  text-decoration: none;
}

.booking-button-container {
  margin-top: 1.5rem;
  width: 100%;
  display: block;
}

.booking-link i {
  margin-right: 0.5rem;
}

/* Stijlen voor de toast */
.booking-toast {
  position: fixed;
  bottom: -100px;
  right: 20px; /* Gewijzigd van left naar right */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out; /* Langzamere transitie */
  max-width: 350px;
  opacity: 0;
  transform: translateY(0); /* Begin op de startpositie */
}

.booking-toast.show {
  transform: translateY(-120px); /* Beweeg omhoog */
  opacity: 0.95; /* Iets transparanter voor subtielere look */
}

.booking-toast-content {
  padding: 1.5rem;
  position: relative;
}

.booking-toast h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #333;
}

.booking-button {
  display: inline-block;
  background-color: #1f456e;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  transition: background-color 0.3s;
}

.booking-button:hover {
  background-color: #15304d;
  color: white;
  text-decoration: none;
}

.close-toast {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
}

.close-toast:hover {
  color: #333;
}

/* Responsieve aanpassingen */ \
@media (max-width: 576px}) {
  .booking-toast {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
  }
}

/* Verbeterde zichtbaarheid voor de booking-link */
.kamer-beschrijving-kolom .booking-link {
  display: block;
  margin-top: 1rem;
  width: fit-content;
  clear: both;
}
