/**
 * Tours List Page CSS
 * Extracted from tour_home_list.html for CSP compliance
 */

/* Loading overlay for results */
.loading-overlay {
     position: relative;
     min-height: 200px;
}

.loading-overlay.htmx-request::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(255, 255, 255, 0.7);
     z-index: 10;
}

/* Hide horizontal filters by default (fallback) */
#horizontal-filters-wrapper {
     display: none;
}

/* Show horizontal filters when JS is enabled */
.js-enabled #horizontal-filters-wrapper {
     display: block;
}

/* Hide fallback when JS is enabled */
.js-enabled #basic-filters {
     display: none;
}