/* Supplementary styles beyond Tailwind utility classes */

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.photo-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid hsl(0, 10%, 90%);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-thumb .remove-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: none;
}

#dropzone.dragover {
  border-color: hsl(352, 35%, 65%);
  background-color: hsl(0, 20%, 96%);
}

.toast {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  color: #fff;
  animation: toast-in 0.2s ease-out;
}
.toast.success { background-color: #2f9e44; }
.toast.error { background-color: #e03131; }
.toast.info { background-color: #333333; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: hsl(352, 35%, 65%);
}
