.qhh-room-panel {
  background: #fff;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.qhh-room-panel h3 {
  color: #0077cc;
  margin-bottom: 10px;
}
.qhh-divider {
  height: 6px;
  width: 80%;
  margin: 20px auto;
  background: linear-gradient(to right, #0077cc, #66b3ff, #0077cc);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.qhh-photo-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qhh-main-photo {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
}
.qhh-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.qhh-thumbnails img {
  width: 120px;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.qhh-thumbnails img:hover {
  transform: scale(1.05);
  border-color: #0077cc;
}
.room-content-description {
  margin-top: 10px;
}
#book-button a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}
#book-button strong {
  color: #333;
}
