.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other elements */
}
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.switcher-active-item{
    display: none;
}
#search-filter{
    display: flex;
    margin-bottom: 10px;
}
#search-filter .input-filed{
    margin-left: 10px;
    width: 60px;
}
#search-filter .other-filed{
    margin-left: 10px;
    margin-top: 6px;
}
