/* Upload drop zone */
.upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.upload-zone:hover {
  border-color: #3b82f6;
  background-color: rgba(239, 246, 255, 0.5);
}
.upload-zone.active {
  border-color: #3b82f6;
  background-color: #eff6ff;
}
.upload-zone.has-files {
  border-color: #4ade80;
  background-color: rgba(240, 253, 244, 0.5);
}

.upload-zone.compact {
  padding: 0.75rem 1rem;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.status-pending {
  background-color: #f3f4f6;
  color: #6b7280;
}
.status-pass {
  background-color: #dcfce7;
  color: #15803d;
}
.status-fail {
  background-color: #fee2e2;
  color: #b91c1c;
}
.status-analyzing {
  background-color: #dbeafe;
  color: #1d4ed8;
}
.status-review {
  background-color: #fef3c7;
  color: #92400e;
}

/* Pulse animation for analyzing */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.animate-pulse-dot {
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Photo grid items */
.photo-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: white;
}
.photo-card img {
  width: 100%;
  height: 6rem;
  object-fit: cover;
}
.photo-card .remove-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #ef4444;
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
}
.photo-card:hover .remove-btn {
  opacity: 1;
}

/* Summary checklist items */
.summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #f9fafb;
}
