#dl-toolbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3c3c3c;
  padding: 12px 20px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.dl-check {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

#dl-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

#dl-modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 30px 40px;
  text-align: center;
  min-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#dl-modal-spinner {
  color: #c41230;
  margin-bottom: 15px;
}

#dl-modal-title {
  margin: 0 0 8px 0;
  color: #333;
}

#dl-modal-status {
  color: #666;
  margin: 0 0 20px 0;
  font-size: 14px;
}

#dl-modal-bar-wrap {
  background: #e9ecef;
  border-radius: 4px;
  height: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

#dl-modal-bar {
  background: #c41230;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

#dl-modal-cancel {
  margin-top: 5px;
}
