/* Fix for search bar/filters section - prevent sticky behavior */

.filters-section {
    position: static !important;  /* Override sticky positioning */
    top: auto !important;         /* Remove top positioning */
    z-index: 10 !important;       /* Reduce z-index */
}

/* Ensure proper spacing without sticky behavior */
.filters-section {
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Remove backdrop filter that was meant for sticky header */
.filters-section {
    backdrop-filter: none !important;
}

/* Simplify box shadow */
.filters-section {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}