[x-cloak] { display: none !important; }

.dropzone {
  @apply border-2 border-dashed border-border rounded-xl p-8 cursor-pointer transition-all duration-200 flex items-center justify-center min-h-[200px];
}
.dropzone:hover, .dropzone.dragover {
  @apply border-gold;
  box-shadow: 0 0 20px rgba(197, 165, 90, 0.1);
}

.bbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(1rem); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-slide-in {
  animation: slide-in 0.2s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0e17; }
::-webkit-scrollbar-thumb { background: #2a3555; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C5A55A; }

/* Range slider */
input[type="range"] {
  -webkit-appearance: none;
  @apply w-full h-1.5 rounded-full bg-border;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  @apply w-4 h-4 rounded-full bg-gold cursor-pointer;
}
