.room-main {
  border: 8px solid var(--main-blue-color);
}
.room-image-div {
  height: 350px;
}

.room-title {
  height: 60px;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.room-id-image {
  height: 60px;
}
.room-id-title {
  height: 60px;
}
.room-id-image img {
  height: 100%;
}

.room-id-title span {
  width: 20px;
  height: 20px;
  margin: 10px;
  line-height: 20px;
  color: black;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
}

.flex-item {
  width: 100%;
  height: 20px;
  margin: 10px;
  line-height: 20px;
  color: black;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}

.room-detail {
  height: 200px;
}
.room-detail span {
  font-size: 12px;
}
/* blue book button */

.room-book-button {
  background-color: var(--main-blue-color);
  font-weight: 500;
  color: white;
  font-size: 24px;
  padding: 10px 30px;
  border: 3px solid #be965b;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  width: 80%;
  height: 60px;

  text-align: center;
  margin: auto;

  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -40%;
}

.room-book-button:hover {
  background-color: #2ee59d;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}
.room-book-button a {
  text-decoration: none;
  color: white;
}
