.global-drag-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/drag.png) 50% no-repeat, rgba(50, 31, 31, .69);
  display: none;
  z-index: 100;
  pointer-events: none;
}

.global-drag-overlay.file-hash {
  background: rgba(50, 31, 31, 0.69); 
}

.global-drag-overlay.active {
  display: block;
}

#overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 18px;
  font-family: Arial, sans-serif;
  display: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.global-drag-overlay.file-hash #overlay-content {
  display: block;
}

#overlay-file-name,
#overlay-file-size,
#overlay-hash-progress {
  margin: 10px 0;
}