#haircut-booking-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  background-color: #1e293b;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

#haircut-booking-button.hidden {
  opacity: 0;
  pointer-events: none;
}

#haircut-booking-container {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 500px;
  max-width: 95vw;
  max-height: 95vh;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

#haircut-booking-container.visible {
  display: flex;
}

#haircut-booking-container-header {
  background-color: #1e293b;
  color: #fff;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

#haircut-booking-close-button {
  position: absolute;
  top: 0px;
  right: 12px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

#haircut-booking-close-button:hover {
  color: #c36;
}

#haircut-booking-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  flex-grow: 1;
}

@media (max-width: 600px) {
  #haircut-booking-container {
    width: 100vw;
    height: 75vh;
  }

  #haircut-booking-iframe {
    min-height: 400px;
  }
}
