/* Minimal custom styles — Tailwind handles the rest */

/* Checked item styling */
.item-checked > .flex label {
  text-decoration: line-through;
  opacity: 0.5;
}

/* Large tap targets for mobile handover use */
.tap-target {
  min-height: 48px;
}

/* Floor plan marker */
.damage-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
}

/* Progress bar animation */
.progress-bar {
  transition: width 0.3s ease;
}

/* Comment textarea */
.comment-area {
  resize: vertical;
  min-height: 60px;
}
