body {
  overflow: unset;
}

.sidebar-filter {
  height: 100dvh;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  overflow-y: scroll;
  position: sticky;
  top: 4rem;
}

.facilities-checkboxes {
  max-height: 180px;
  overflow: auto;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px;
}

.hotel-item {
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}

.hotel-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hotel-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-content {
  padding: 10px;
}

.hotel-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hotel-content {
  max-height: 100%;
  overflow: visible;
}

.hotel-container #btnToggleContent {
  display: none;
}

.hotel-content.custom-hotel-fadeout::after {
  background: unset;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .card-hotel {
    width: 98%;
  }
}

@media (max-width: 768px) {
  .card-hotel {
    width: 100%;
  }
}
