/* Basic styles for the tabs and theme switcher */
.container {
  max-width: 800px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  background-color: transparent;
  color: #a9a9a9;
  border-color: #a9a9a9;
  border-width: 1px;
  border-style: solid;
}

.tab:hover {
  background-color: #f2f2f2;
}

.tab.active {
  background-color: #249e9db3;
  color: #ffffff;
  border-color: #249E9D;
  border-width: 3px;
  border-style: solid;
}

.tab-content {
  border: 1px solid #ddd;
  border-top: none;
}


/* Toggle switch styles */
.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.toggle-label:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  transition: transform 0.3s ease-in-out;
}

.toggle-checkbox:checked+.toggle-label:before {
  transform: translateX(20px);
}

/* Theme-specific label text color */
.dark .toggle-label #lightLabel {
  display: none;
}

.light .toggle-label #darkLabel {
  display: none;
}


.tab.active {
  font-weight: bold;
}

.bg-\[\#249E9D\] {
  --tw-bg-opacity: 1;
  background-color: rgb(36 158 157 / var(--tw-bg-opacity));
}

.bg-\[\#249E9D1\] {
  --tw-bg-opacity: 1;
  background-color: rgb(36 158 157 / var(--tw-bg-opacity));
}


i.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.border-249E9D {
  border-color: #249E9D;
}
.woocommerce.columns-3 {
    columns: auto;
}
