﻿
Dropdown menu

.dropdown-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px; 
}

#activeFilters strong {
    font-size: 15px;
    color: #333; 
}


.w3-tag {
    font-size: 15px; 
    padding: 4px 8px; 
    border-radius: 5px; 
}


#filterOptions {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    width: auto;
    max-width: 300px;
    border-radius: 4px;
}


    #filterOptions label {
        display: block;
        margin-bottom: 6px;
        font-weight: normal;
        white-space: nowrap;
    }

    #filterOptions input[type="checkbox"] {
        margin-right: 6px;
    }


#filterToggle {
    
    padding: 8px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.5s ease;
    transform: rotate(0deg);
}


