.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploader-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  text-align: center;
  width: 320px;
  transition: 0.3s;
}

#drop-zone {
  border: 2px dashed #888;
  border-radius: 10px;
  padding: 2rem 0rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#drop-zone:hover {
  border-color: #444;
  background: #f9f9f9;
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#drop-zone p {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

#drop-zone small {
  color: #777;
}

#tokenUploader {
  display: none;
}
