.exporter-logo {
  padding-left: 20px;
  padding-top: 20px;
}

.drop-zone {
  position: relative;
  border: 2px dashed #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.drop-zone.dragover {
  background-color: rgba(240, 248, 255, 0.8);
  position: relative;
}

.drag-icon {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  font-size: 1.5rem;
  color: #fa7d19;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.drop-zone.dragover #browse-button {
  opacity: 0;
}

.drop-zone.dragover #invite-browse-button {
  opacity: 0;
}

.drop-zone.dragover .drag-icon {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Overlay CSS */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Half transparent black */
  z-index: 9999;
  /* Ensure it's on top */
  display: flex;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #adadad6c;
}

.modal-card.is-large {
  width: 80%;
  max-width: none;
  height: 80vh;
}

.modal-card-body {
  overflow-y: auto;
  height: calc(100% - 150px);
}

.progress-item {
  margin-top: 10px;
  width: 100%;
  border: solid #abb1bf 1px;
  padding: 10px;
  border-radius: 10px;
}

.progress {
  background-color: #f0f0f0;
  height: 1.5rem;
  border-radius: 5px;
  overflow: hidden;
}

#invite-status,
#download-status {
  min-height: 1.5em;
}

.hidden {
  display: none;
}
