/* Neurofy Dropzone dark glassmorphism overrides */
.neurofy-dropzone-host {
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(14, 19, 34, 0.55);
  backdrop-filter: blur(12px);
  min-height: 120px;
  padding: 0.75rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.neurofy-dropzone-host.dz-drag-hover,
.neurofy-dropzone-host:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.08);
}

.neurofy-dropzone-host .dz-message {
  margin: 1.25rem 0;
}

.neurofy-dropzone-host .dz-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.35rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 25, 0.92);
  min-width: 220px;
  max-width: 280px;
}

.neurofy-dropzone-host .dz-image {
  width: 48px;
  height: 48px;
  border-radius: 0.65rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.neurofy-dropzone-host .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neurofy-dropzone-host .dz-details {
  flex: 1;
  min-width: 0;
}

.neurofy-dropzone-host .dz-filename span,
.neurofy-dropzone-host .dz-size {
  color: #cbd5e1;
  font-size: 11px;
}

.neurofy-dropzone-host .dz-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 0.35rem;
}

.neurofy-dropzone-host .dz-upload {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.neurofy-dropzone-host .dz-remove {
  border: none;
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
  border-radius: 0.5rem;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.neurofy-dropzone-host .dz-remove:hover {
  background: rgba(244, 63, 94, 0.22);
  color: #fecdd3;
}

.neurofy-dropzone-host .dz-error-message {
  color: #fb7185;
  font-size: 10px;
}

.neurofy-dropzone-host.neurofy-dropzone-compact {
  min-height: 88px;
  padding: 0.5rem;
}

.neurofy-dropzone-host.neurofy-dropzone-avatar {
  min-height: 72px;
  padding: 0.75rem;
  border: 1px dashed rgba(99, 102, 241, 0.25);
  border-radius: 0.75rem;
  background: rgba(9, 13, 20, 0.6);
}

.neurofy-dropzone-host.neurofy-dropzone-avatar.dz-drag-hover,
.neurofy-dropzone-host.neurofy-dropzone-avatar:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(49, 46, 129, 0.15);
}

.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-message {
  display: none;
}

.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-preview {
  margin: 0;
  border: none;
  background: transparent;
  min-width: 0;
  max-width: none;
  padding: 0;
}

.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-details,
.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-progress,
.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-remove {
  display: none;
}

.neurofy-dropzone-host.neurofy-dropzone-avatar .dz-image {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}
