.upload-div {
  margin-top: 15px;
}

.upload-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.no-dropshipping {
  display: none;
}

.loader {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Dodaj ten kod do twojego pliku CSS */
.success {
  border: 2px solid #4CAF50; /* Zielony kolor obramowania */
  border-radius: 50%; /* Okrągły kształt */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto; /* Centrowanie */
  animation: expand 0.5s ease-in-out; /* Animacja */
}

.success::after {
  content: '\2713'; /* Unicode dla zielonego haczyka */
  color: #4CAF50; /* Zielony kolor haczyka */
  font-size: 24px; /* Wielkość haczyka */
}

@keyframes expand {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.error {
  border: 2px solid #f44336; /* Czerwony kolor obramowania */
  border-radius: 50%; /* Okrągły kształt */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto; /* Centrowanie */
  animation: shake 0.5s ease-in-out; /* Animacja */
}

.error::after {
  content: '\2716'; /* Unicode dla czerwonego X */
  color: #f44336; /* Czerwony kolor X */
  font-size: 24px; /* Wielkość X */
}

@keyframes shake {
  0% {
    transform: translateX(1px);
  }
  25% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(1px);
  }
  75% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(1px);
  }
}

.pdf-input {
  display: block;
  margin-bottom: 10px;
}

#download-link {
	margin-bottom:1em;
}

