#progress-window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5); /* Poloprůhledné pozadí */
  display: flex;
  justify-content: center;
  align-items: center;
}

#progress-container {
  background-color: #fff; /* Bílé pozadí pro obsah načítání */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

#progress-bar {
  width: 100%;
  height: 20px;
  margin: 10px 0;
}

#completion-message {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.dropzone {
  /* background-color: #9AFF9A; /* Změna na brandovou barvu */
  display: flex; /* Použijeme flexbox */
  flex-direction: column;
  justify-content: center; /* Horizontální vycentrování textu */
  align-items: center; /* Vertikální vycentrování textu */
  border-radius: 8px;
  padding: 20px;
  height:100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
  border: 3px dashed rgba(255, 255, 255, 0.5);
}

.dropzoneinput-side {
  display: flex; /* Použijeme flexbox */
  flex-direction: column;
  justify-content: center; /* Horizontální vycentrování textu */
  align-items: center; /* Vertikální vycentrování textu */
  border-radius: 8px;
  padding: 20px;
  height: 200px;
  box-sizing: border-box;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;                                 
  border: 3px dashed rgba(0, 0, 0, 0.5);
  transition: border 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dropzoneinput-side > p{
margin: 0;
}


.dropzoneinput-side:hover {
  color: rgba(0, 0, 0, 1);
  border: 3px dashed rgba(0, 0, 0, 1);
}

.dropzone:hover {
  color: rgba(255, 255, 255, 1);
  border: 3px dashed rgba(255, 255, 255, 1);
}

.dropzone.drag-over {
  background-color: rgba(125, 255, 125, 0.1);
  border: 2px dashed #7DFF7D;
}

.dropzone.drag-over p {
  font-weight: bold;
}


.hidden {
  display: none !important;
}