.theme-toggle-container {
  position: none;
  top: 20px;
  right: 20px;
}

.toggle-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.toggle-icon {
  transition: opacity 0.3s ease;
}

.theme-toggle.dark .toggle-icon {
  stroke: #37EFBA;
}