/*
 * 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.
 *= require simple_calendar
 */

/* Color transition animation - Remove if not needed */
@keyframes colorChange {
  0% {
    fill: #f3e770;
  }
  50% {
    fill: #fcadb4;
  }
  100% {
    fill: #f3e770;
  }
}
.color-change {
  animation: colorChange 1s infinite;
}

/* Smooth rotation animation */
@keyframes smoothRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.smooth-rotate {
  animation: smoothRotate 2s ease-in-out infinite;
}
