.search-filter {
    display: flex;
    justify-content: end; 
    padding:3px;
}

.search-filter button {
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 3px 10px;
}
.search-filter button:hover {
    background-color: #0056b3;
}

.asc span:after {
    content: " ▲";
}
.desc span:after {
    content: " ▼";
}


.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
    z-index: 9999;
  }
  .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  @media only screen and (min-width:676px) and (max-width: 1080px) and (max-width: 1024px) {
    .search-filter .dropdown{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content:flex-end; 
        margin-bottom: 10px;
        gap:8px;
    }
  }
