/* ---------------------------
   DROPZONE — DARK THEME
---------------------------- */

.dropzone {
  background: rgba(255,255,255,0.02);
  border: 2px dashed rgba(255,255,255,0.2) !important;
  border-radius: 14px;
  padding: 30px;
  color: #fff;
  min-height: 180px;
  transition: all .25s ease;
}

/* Hover effect */
.dropzone:hover {
  border-color: #15c79a !important;
  background: rgba(21,199,154,0.08);
}

/* Default message text */
.dropzone .dz-message {
  font-size: 1rem;
  color: #BFC8C9;
  opacity: 0.95;
  letter-spacing: .3px;
}

/* Preview container */
.dropzone .dz-preview {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  margin: 10px;
}

/* File thumbnail box */
.dropzone .dz-image {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

/* File name text */
.dropzone .dz-filename span {
  color: #fff !important;
  font-size: 0.9rem;
}

/* File size label */
.dropzone .dz-size span {
  background: rgba(0,0,0,0.6);
  color: white !important;
  border-radius: 6px;
  padding: 3px 6px;
}

/* Remove link */
.dropzone .dz-remove {
  color: #6EA8FF !important;
  text-decoration: none;
  font-size: 0.9rem;
}

.dropzone .dz-remove:hover {
  color: #9CC2FF !important;
  text-decoration: underline;
}

/* Error styling */
.dropzone .dz-error-message {
  background: rgba(255,0,0,0.2);
  color: #ff6b6b !important;
  border-radius: 8px;
  padding: 6px 8px;
}

/* SUCCESS BORDER */
.dropzone.dz-started {
  border-color: rgba(21,199,154,.4) !important;
}

/* ============================
   FIX DROPZONE PREVIEW TEXT
============================ */

/* Text inside file preview */
.dropzone .dz-details,
.dropzone .dz-filename span,
.dropzone .dz-size span {
  color: #000 !important;        /* visible on light preview bg */
}

/* Background behind filename overlay */
.dropzone .dz-filename span {
  background: rgba(255,255,255,0.9) !important;
  border-radius: 6px;
  padding: 3px 6px;
}

/* Size bubble */
.dropzone .dz-size span {
  background: rgba(255,255,255,0.9) !important;
  border-radius: 6px;
}

/* Make preview box dark if you prefer consistency */
.dropzone .dz-preview {
  background: rgba(255,255,255,0.08) !important;
}

.dropzone .dz-preview .dz-progress { 
    top: 66% !important;
}

.pitchForm input {
    margin-bottom: 20px;
}

.dropzoneLabel {
  margin-top: 20px;
}

.pitchForm button {
  width: 100%;
  height: 50px;
}

.formInfo h3 {
  margin-bottom: 10px;
  margin-top: 20px;
}