.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.5s forwards;
}

.filter-modal-content {
    position: absolute;
    top: 10%;
    left: 25%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 1000px !important;
    transform: translateY(-50px);
    animation: slideDown 0.5s forwards;

}

@keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideDown {
    to {
      transform: translateY(0);
    }
  }

.filter-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.filter-item {
    background-color: #c5eef6;
    padding: 3px 5px;
    border-radius: 4px;
    margin: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.filter-item:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
}

.filter-item-selected {
    background-color: #cce7ff;
    border: 2px solid #80bfff;
    transform: scale(1.02);
}

.filter-item-selected:hover {
    background-color: #b3d8ff;
    transform: scale(1.04);
}

.filter-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.filter-checkbox {
    margin-right: 6px;
}

.filter-label {
    font-size: 12px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: bold;
    color: #333;
}

.filter-site-item {
    background-color: #f8d775;
    padding: 3px 5px;
    border-radius: 4px;
    margin: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.filter-site-item:hover {
    background-color: #f7c944;
    transform: scale(1.02);
}

.filter-site-item-selected {
    background-color: #ff9e66;
    border: 2px solid #ffbf00;
    transform: scale(1.02);
}

.filter-site-item-selected:hover {
    background-color: #ffcc33;
    transform: scale(1.04);
}

.filter-site-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.filter-site-checkbox {
    margin-right: 6px;
}

.filter-site-label {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    font-family: 'Roboto', sans-serif !important;
}


/* filter end css */