* {
  scroll-behavior: smooth;
}
.c-nav-script,
.x-sign {
  display: none;
}

.active-filter {
  background-color: rgb(233, 233, 95);
  color: black !important;
}

.custom-select {
  position: relative;
  width: 100%;
}

#selectBtn {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0);
  text-align: left;
  cursor: pointer;
  color: grey;
}

.options {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  color: black !important;
}

.options div {
  padding: 10px;
  cursor: pointer;
}

.options div:hover {
  background: #f3f4f6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.25s ease-out;
}
