.room-request-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background-color: #f9f9f9;
  /* Keep the container’s background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 95%;
  max-width: 500px;
  margin: 20px 50px;
}

@media (max-width: 768px) {
  .room-request-container {
    margin: 20px auto;
  }
}

.room-request-form {
  width: 100%;
  padding: 20px;
  border-radius: 8px; 
}

.form-group {
  margin-bottom: 20px;
  /* Adds consistent spacing between form elements */
}

.room-request-form label {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  background-color: unset;
  border: unset;
  margin: unset;
  padding: unset;
  float: unset;
  border-radius: unset;
}

.room-request-form input,
.room-request-form textarea {
  width: 95%;
  padding: 12px;
  /* Add more padding for better UX */
  font-size: 14px;
  border: 1px solid #ddd;
  /* Softer border color */
  border-radius: 4px;
  transition: border-color 0.3s ease;
  /* Add focus effect */
}

.room-request-form input:focus,
.room-request-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.room-request-form textarea {
  resize: vertical;
}

.submit-button {
  padding: 12px 18px;
  /* Increase button size */
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0056b3;
}
