.reset-button {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  background: var(--color-panel-reset-bg);
  color: inherit;
  transition: background 0.2s ease;
}

.reset-button:hover {
  background: var(--color-panel-reset-hover-bg);
}

.theme-buttons {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.theme-btn {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid var(--color-panel-input-border);
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  background: var(--color-panel-input-bg);
  color: var(--color-panel-text);
  transition: background 0.2s, border-color 0.2s;
}

.theme-btn.active {
  background: var(--color-panel-tab-active);
  color: white;
  border-color: var(--color-panel-tab-active);
}

.close-button {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: inherit;
}