.rooming-view .hotel {}

.rooming-view .room-types {
  display: flex;
  /*flex-wrap: wrap;*/
  flex-direction: column;
  margin: -5px;
}

.rooming-view .room-type {
  margin: 5px;
  padding: 5px;
  /*flex: 0 0 calc(50% - 10px);*/
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #d2ffe470;
}

.rooming-view .room-type-label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  padding: 5px;
}

.rooming-view .room-type .rooms {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0px;
  padding: 10px;
}

.rooming-view .room {
  margin: 5px;
  padding: 5px;
  border: 1px solid #4b4b4b;
  flex: 0 0 calc(50% - 10px);
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-width: 230px;
  background-color: white;
}

.rooming-view .room.room_status_hidden{
  background-color: #888888;
}
.rooming-view .room.room_status_sale{
  background-color: #c4ff99;
}
.rooming-view .room.room_status_reserved{
  background-color: #ffefbb;
}
.rooming-view .room.room_status_sold{
  background-color: #ff6a6a;
}
.rooming-view .room.room_status_preview{
  background-color: #a0b7ff;
}

.rooming-view .room-number {
  font-weight: bold;
  font-style: italic;
}

.rooming-view .travelers {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
}
.rooming-view .travelers span {
  border-bottom: 1px solid #4b4b4b;
  padding: 3px;
}

.rooming-view .travelers span:last-child {
  border-bottom: none;
}
.rooming-view .travelers span.empty {
  background-color: rgba(136, 136, 136, 0.64);
}

/*Add image icons to room links*/
.rooming-view .room a.view-room {
  display: inline-block;
  width: 24px; /* Set the width of the SVG */
  height: 24px; /* Set the height of the SVG */
  background-image: url('/modules/custom/devokado_gin/images/bed-solid.svg');
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px; /* Hide the original text */
  overflow: hidden;
}

/*Add image icons to room links*/

.rooming-view .room a {
  display: inline-block;
  width: 20px; /* Set the width of the SVG */
  height: 20px; /* Set the height of the SVG */
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px; /* Hide the original text */
  overflow: hidden;
  color: #646464;
  background-position: center;
}

.rooming-view .room a.view-room {
  background-image: url('/modules/custom/devokado_gin/assets/images/bed-solid.svg');
}
.rooming-view .room a.add-booking {
  background-image: url('/modules/custom/devokado_gin/assets/images/file-circle-plus-solid.svg');
}

.rooming-view .room a.view-booking {
  background-image: url('/modules/custom/devokado_gin/assets/images/eye-regular.svg');
}
.rooming-view .room a.admin-bookings {
  background-image: url('/modules/custom/devokado_gin/assets/images/bell-regular.svg');
}

.rooming-view .room .room-header {
  display: flex;
  justify-content: space-between;
}

.rooming-view__filters{
  position: fixed;
  right: 0;
  display: flex;
  flex-direction: column;
  background: #808080ad;
  padding: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.rooming-view__filters a{
  color: white;
  text-decoration: none;
  margin: 3px;
}

.show-in-modal {
  display: none !important;
}

.ui-dialog .show-in-modal {
  display: inline-block !important;
}




