.settings-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
}

.settings-window {
  position: absolute;
  top: 120px;
  left: 120px;
  width: 300px;
  background: #222;
  color: #fff;
  border: 2px solid #555;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
  z-index: 9999;
  user-select: none;
}

.hidden {
  display: none;
}

.settings-header {
  background: #333;
  padding: 10px;
  cursor: move;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none; /* prevents Safari from scrolling instead of dragging */
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.settings-body {
  padding: 15px;
}

.settings-body label {
  display: block;
  margin-top: 10px;
}

.settings-body input {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  background: #111;
  border: 1px solid #444;
  color: #fff;
}

.save-btn, .help-btn {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background: #444;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.help-section {
  margin-top: 15px;
  padding: 10px;
  background: #111;
  border: 1px solid #444;
  border-radius: 4px;
}
