/* Custom styles beyond Tailwind */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.drop-active {
  border-color: #2196F3 !important;
  background-color: rgba(33, 150, 243, 0.05) !important;
}

/* Score colors */
.score-high { background-color: #dcfce7; color: #166534; }
.score-medium { background-color: #fef9c3; color: #854d0e; }
.score-low { background-color: #fee2e2; color: #991b1b; }

/* Step status indicators */
.status-completed { color: #16a34a; }
.status-partial { color: #ca8a04; }
.status-skipped { color: #dc2626; }
.status-deviated { color: #ea580c; }

/* Smooth transitions */
section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
