  #priceSliderForm {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  #priceSliderForm label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
  }

  #max_price {
    -webkit-appearance: none;
    width: 220px;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(90deg, #ff4081 60%, #e0e0e0 60%);
    outline: none;
    transition: background 0.3s;
  }

  #max_price::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #ff4081;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
  }

  #max_price::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #ff4081;
    cursor: pointer;
    border: 2px solid white;
  }

  #priceDisplay {
    font-size: 16px;
    font-weight: 600;
    color: #444;
  }

  .form-control-sm {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border-color 0.3s;
  }

  .form-control-sm:focus {
    border-color: #ff4081;
    outline: none;
    box-shadow: 0 0 4px rgba(255, 64, 129, 0.4);
  }
  
  #ratingFilterForm {
    padding: 10px 16px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
	margin-block: 12px;
  }


  #ratingFilterForm .form-check-input {
    width: 15px;
    height: 15px;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #6c757d;
    transition: background-color 0.2s, border-color 0.2s;
  }

  #ratingFilterForm .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }

  /* Label styling */
  #ratingFilterForm .form-check-label {
    font-size: 2rem;
    color: #212529;
    transition: color 0.3s;
  }

  #ratingFilterForm .form-check-label:hover {
    color: #0d6efd;
  }

  /* Star text */
  #ratingFilterForm span {
    font-weight: 500;
    margin-left: 8px;
    user-select: none;
  }

  /* Responsive tweaks */
  @media (max-width: 480px) {
    #ratingFilterForm {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }
  
.menu-item {
  margin-bottom: 8px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 50px;
  gap: 10px;
}

.sub-menu > li,
.sub-sub-menu > li {
  margin-bottom: 8px; /* Adjust the gap size */
}


.menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
}


.menu-row:hover {
  background: #f0f8ff;
}

.menu-link-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  background: #fff;
  color: #333;
  transition: 0.2s ease-in-out;
}

.open-link:hover {
  background-color: #eee;
}

.external-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.external-link,
.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.external-link:hover {
  background-color: #f0f0f0;
}


.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.sub-menu,
.sub-sub-menu {
  padding-left: 16px;
  list-style: none;
  margin-top: 6px;
  display: none;
}