html {
  scroll-behavior: smooth;
}
.hide-button {
  display: none;
}
.menu-open .overlay {
  visibility: visible;
  opacity: 1;
}
.popup {
  transform: scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.popup.open {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.dropdown-menu {
  display: none;
}

.dropdown-open .dropdown-menu {
  display: block;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.ts-wrapper .ts-control input {
  margin: 5px;
}
.ts-wrapper .option {
  padding: 5px 10px;
}
.ts-wrapper .ts-control {
  min-height: 40px;
}
.ts-wrapper.multi .ts-control > div:not(.ts-control input) {
  display: none !important;
}

.ts-wrapper {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.ts-wrapper .ts-control {
  border-radius: 8px;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
}

.ts-dropdown {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
  background-color: #f5f5f5;
}

.authModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999999;
}
.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999999999;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}
.loader {
  border: 8px solid #e5e7eb;
  border-top: 8px solid #FF5A01;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .accordion-content {
    display: none;
  }
}

@media (min-width: 768px) {
  .accordion-content {
    display: block;
  }
}
