/* Theme Switcher Styles */
.theme-switcher {
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #6e6e6e;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  padding: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #1e1e1e;
  transition: 0.4s;
  border-radius: 50%;
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1);
}

input:checked + .slider {
  background-color: #6e6e6e;
}

input:checked + .slider:before {
  transform: translateX(20px);
  filter: invert(0);
}

/* Dark Theme Styles */
body.dark {
  background-color: #1e1e1e;
  color: #ffffff;
}

.dark .container {
  background-color: #1e1e1e;
}
