/* Toggle Button */
.theme-picker-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1040;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.theme-picker-toggle:hover {
  transform: scale(1.1);
  background-color: var(--secondary-creative);
}

/* Animation Classes */
@keyframes slideIn {
  from { right: -350px; }
  to { right: 0; }
}

@keyframes slideOut {
  from { right: 0; }
  to { right: -350px; }
}

.theme-picker.slide-in {
  animation: slideIn 0.3s forwards;
}

.theme-picker.slide-out {
  animation: slideOut 0.3s forwards;
}

/* Ripple Effect */
.theme-option .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}