/* Hotel Search Form */
.hotel-search-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.hotel-search-form input[type="text"],
.hotel-search-form input[type="number"],
.hotel-search-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hotel-search-form button {
  background: #f60;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hotel-search-form button:hover {
  background: #e55b00;
}

/* Hotel Results */
.hotel-results h3 {
  margin-top: 0;
  font-size: 20px;
}

.hotel-results .button {
  display: inline-block;
  background: #f60;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
}

.hotel-results .button:hover {
  background: #e55b00;
}

/* Room Offers */
.room-offers h3 {
  margin-top: 0;
  font-size: 18px;
}

/* Public Room Display */
.public-room-list h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.public-room-list .button {
  background: #444;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}

.public-room-list .button:hover {
  background: #222;
}