/* Style for the file drop area */
.file-drop-area {
  border: 2px dashed #888;
  padding: 20px;
  text-align: center;
  background-color: #FFFFFF22;
  cursor: pointer;
  transition: border-color 0.3s;
  margin-left: 40px;
  margin-right: 40px;
}

/* Highlight the drop area when hovering over it */
.file-drop-area.dragover {
  border-color: #33adff;
  background-color: #fff;
}

/* style for full screen overlay */
.drag-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  text-align: center;
}
