/* Skrytie názvu prevádzky */
.facility-title {
  display: none !important;
}


/* MOBILE */
@media (max-width: 767px) {

  /* Calendar view - bez vnútorného scrollovania */
  html,
  body {
    overflow-y: hidden !important;
  }

  /* Booking form - povoliť scroll */
  body:has(.booking-actions-section) {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

}