/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.color-preset-label {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-check:checked+.color-preset-label {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #495057 !important;
  transform: scale(1.15);
}

@keyframes rainbow_blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes rainbow_gradient_move {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.text-new-blink {
  background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff, #ff0000);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow_gradient_move 4s linear infinite;
}