/*  CSS for Sticky Search and Filter options */
/* Sticky Filter Bar */
#filter-bar {
    position: sticky;
    top: 10px;
    z-index: 1030;
    background-color: transparent;
    backdrop-filter: blur(2px);
    padding: 0.5rem 0;
}

/* Smaller and compact card */
.small-filter-card {
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    background-color: transparent;
    box-shadow: none;
}

/* Compact form elements */
#filter-form .form-control-sm,
#filter-form .form-select-sm {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    #filter-bar {
        top: 0;
        padding: 0.4rem 0;
    }
    .small-filter-card {
        margin: 0 0.5rem;
    }
    #filter-form {
        row-gap: 0.4rem;
    }
}

