.modal-content {
  border-radius: 1rem;
  border: none;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
  font-family: 'Open Sans', sans-serif;
}

.modal-header {
  background: linear-gradient(90deg, #0d6efd 0%, #5ea6f7 100%);
  color: #ffffff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1rem 1.5rem;
}

.room-detail-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.room-detail-card p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.room-detail-card strong {
  color: #0d6efd;
}

#modalRoomImage {
  border-radius: 0.75rem;
  max-height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: 'Open Sans', sans-serif;
}

.modal-header {
  background: linear-gradient(90deg, #0d6efd, #5ea6f7);
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.facility-icon {
  font-weight: bold;
  color: #333;
  min-width: 1.5em;
  display: inline-block;
  text-align: center;
}

#posterModal .modal-dialog {
  max-width: 450px;
  }
#posterModal img {
  object-fit: contain;
  border-radius: 1rem;
}

#star-rating .star {
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
  }
#star-rating .star.selected {
  color: gold;
}

.comment-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.comment-box:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

#comment-input {
  height: 10px;
  resize: none;
  border-radius: 6px;
  padding: 8px 10px;
}