.vpn-configurator {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(40, 40, 40, 0.9);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 10000;
}

.vpn-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.proxy-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proxy-form input {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #333;
  color: #fff;
}

.proxy-form button {
  padding: 8px 15px;
  background: #2196F3;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}