/*
 * 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.
 */

/* Task Card Animations - smooth transitions for Turbo Morphing */
.card {
  /* Noticeable transition when cards move or change */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease-out;
}

/* Smooth transition for task list containers (for reordering) */
#inbox_tasks, #planning_tasks, #ready_tasks, #development_tasks, #review_tasks, #done_tasks {
  transition: all 0.3s ease-out;
}

/* Highlight ring for reorder actions - smooth fade in/out */
.card.ring-4 {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease-in;
}
