 
.item {
        cursor: pointer;
      }
      .category-menu {
        padding: 0px;
        max-width: 600px;
        margin: 0 auto;
      }
      .category-menu ul {
        list-style-type: none;
        padding-left: 0;
        margin: 0;
      }
      .category-menu li {
        margin-bottom: 5px;
      }
      .english-name{
        display: none;
      }
      .category-menu .item {
        display: flex;
        align-items: center;
        padding: 4px 12px;
        background-color: #ffffff;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s ease;
      }
      .category-menu .item:hover {
        background-color: #f0f0f0;
        cursor: pointer;
      }
      .category-menu .item .category-name {
        flex-grow: 1;
      }
      .category-name:hover{
        background-color: #f0f0f0;
        border-radius: 6px;
      }
      .category-menu .item .english-name {
        font-size: 0.8em;
        color: #7f8c8d;
        margin-left: 5px;
      }
      .category-menu .item .toggle-icon {
        background-color: #808080;
        border-radius: 50%;
        cursor: pointer;
        color: white;
        font-size: 16px;
        width: 24px;
        height: 24px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
      }
      .category-menu .item .toggle-icon:hover {
        background-color: #666666;
      }
      .category-menu .subcategories {
        display: none;
        margin-left: 20px;
      }
      
      .error-message {
        color: #e74c3c;
        text-align: center;
        font-weight: bold;
      }
      #loading {
        padding: 20px;
      }
 
      .filter-button {
        position: fixed;
        top: 170px;
        left: 20px;
        background-color: #007BFF;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        width: 107px;
        height: 60px;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 888;
      }
      
      .skeleton-loader {
        background-color: #f0f0f0;
        height: 20px;
        margin-bottom: 10px;
        border-radius: 4px;
        animation: skeleton-loading 1s infinite alternate;
      }
      @keyframes skeleton-loading {
        0% {
          background-color: #f0f0f0;
        }
        100% {
          background-color: #e0e0e0;
        }
      }

 
      .spinner {
        width: 50px;
        height: 50px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @media(max-width:700px){
      .filter-button {
        position: fixed;
        bottom: 20px;
        top: auto;
        right: 20px;
        left: auto;
      }
    }