html[lang="zh-CN"], body[lang="zh-CN"] {
  font-family: "Noto Sans SC", "Microsoft YaHei", "Heiti SC", sans-serif;
}

html[lang="zh-TW"], body[lang="zh-TW"] {
  font-family: "Hiragino Sans", "PingFang TC", "Microsoft JhengHei", "Heiti TC", "Noto Sans TC", sans-serif;
}

:root {
  --orange: #ff6600;
}

ol,
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  display: inline-flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

input:focus{
    outline: none!important
}

.box-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 -4px 6px rgba(0, 0, 0, 0.03);
}

/* Header */

.header-container {
  max-width: 1340px;
  padding: 26px 16px;
  background-color: white;
}

.header-container img {
  width: 250px;
}

.dart-live-search button {
  background-color: var(--orange);
  color: white;
}

.dart-live-search svg {
  display: inline;
}

.dart-live-search {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.dart-live-search input:focus {
  outline: transparent !important;
}

/* Footer */
footer img {
  width: 300px;
}

footer p {
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

footer ul {
  max-width: 1620px;
  margin: auto;
}

footer ul li {
  font-size: 0.8rem;
  text-decoration: none;
  margin: 0px 5px;
}

footer nav button svg {
  width: 20px;
}

.mobile-view {
  display: none;
  align-items: center;
}

.mobile-view form {
  display: grid;
  grid-template-columns: 1fr 60px;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
}

.mobile-view input {
  width: 100% !important;
  margin: 0px;
}

@media only screen and (max-width: 1366px) {
  footer ul li {
    font-size: 0.7rem;
  }
  footer img {
    width: 220px;
  }
  footer p {
    font-size: 0.8rem;
  }
  .header-container img {
    width: 220px;
  }
}

@media only screen and (max-width: 680px) {
  .large-view {
    display: none;
  }

  .mobile-view {
    display: flex;
  }
}

@media only screen and (max-width: 500px) {
  footer ul {
    flex-direction: column;
    text-align: center;
  }

  footer img {
    width: 160px;
  }

  footer nav button label {
    font-size: 0.9rem;
  }
}

.progress-container {
  position: relative;
  width: 50px;
  height: 50px;
}

.progress-circle {
  position: absolute;
  top: -8px;
  left: -9px;
}

.progress-content {
}

.secondprogress-circle {
  position: absolute;
  top: -8px;
  left: -3px;
}


.dark-placeholder::-webkit-input-placeholder {
  color: #918F92;
}

.dark-placeholder::-moz-placeholder {
  color: #918F92;
}

.dark-placeholder:-ms-input-placeholder {
  color: #918F92;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scroll-container {
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

/* Prevent text selection while dragging */
.scroll-container * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Hide the default checkbox */
    .custom-checkbox input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    /* Custom checkbox styles */
    .custom-checkbox input[type="checkbox"] {
      width: 32px;
      height: 32px;
      border: 1px solid black;
      border-radius: 8px;
      display: inline-block;
      position: relative;
      cursor: pointer;
      background-color: white;
      transition: background-color 0.3s, border-color 0.3s;
    }

    /* Checkmark styling */
    .custom-checkbox input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 16px;
      border: solid black;
      border-width: 0 3px 3px 0;
      transform: rotate(45deg);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
    }

    /* Hover effect */
    .custom-checkbox input[type="checkbox"]:hover {
      border-color: gray;
    }

    .on-off-text::before{
        margin-top: 2px;
    }

    .font-noto{
          font-family: "Noto Sans", sans-serif;
    }