/* Resume Upload Drop Zone Styles */
.resume-drop-zone {
  transition: all 0.2s ease;
  background-color: rgba(255, 192, 0, 0.02);
}

.resume-drop-zone:hover {
  background-color: rgba(255, 192, 0, 0.05);
  border-color: #ffc000 !important;
}

.dark .resume-drop-zone {
  background-color: rgba(255, 255, 255, 0.02);
}

.dark .resume-drop-zone:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


