/* Theme Selector Component */

.theme-selector-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.theme-options {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.theme-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition-standard), transform var(--transition-standard), box-shadow var(--transition-standard);
  position: relative;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-option::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 3px solid transparent;
  border-radius: 50%;
  transition: border-color var(--transition-standard);
}

.theme-option:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-option:hover::after {
  border-color: var(--accent);
}

.theme-option.active::after {
  border-color: var(--accent);
}

.theme-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Theme Preview Patterns */
.theme-preview-standard {
  background: oklch(85% 0.20 155);
}

.theme-preview-dark-gray {
  background: #2a2a2a;
}

.theme-preview-dusk {
  background: oklch(75% 0.18 50);
}

.theme-preview-ocean {
  background: oklch(75% 0.15 220);
}
