* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: rgb(255, 149, 0);
}

body {
  max-width: 600px;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto !important;
  margin: 0;
  padding: 0;
  background-color: white; /* Fond plus clair */
  font-family: Arial, sans-serif;
}

body > form {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

h1 {
  width: 90%;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #007bff; /* Accentuation bleue */
  margin-bottom: 20px;
  text-wrap: balance;
}

input:focus {
  outline: solid 1px #007bff; /* Accentuation bleue */
}

.drop-container {
  height: 200px;
  width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #ffffff;
  border: 2px dashed #007bff; /* Accentuation bleue */
  border-radius: 12px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: 0.1s;
}

.drop-container:hover {
  background: #e3f2fd; /* Fond bleu très clair au survol */
  border: 2px dashed #0056b3; /* Accentuation bleue plus foncée */
}

.drop-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #007bff; /* Accentuation bleue */
}

.drop-container.drag-active {
  background: #a4bacd; /* Fond bleu clair en mode drag */
}

input[type="file"] {
  width: 350px;
  max-width: 100%;
  padding: 8px;
  border: solid 1px #007bff; /* Accentuation bleue */
  border-radius: 6px;
  color: #000000;
}

input[type="file"]::file-selector-button {
  padding: 8px 12px;
  background: #007bff; /* Bouton bleu */
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  margin-right: 8px;
}

button {
  padding: 10px 20px;
  background-color: #007bff; /* Bouton bleu */
  opacity: 0.3;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  cursor: no-drop;
}

button:hover {
  background-color: #0056b3; /* Accentuation bleue plus foncée au survol */
}

.progress-circle {
  height: 100px;
  width: 100px;
  position: relative;
}

.circle {
  height: 100%;
  width: 100%;
  transform: rotate(-90deg);
}

.progress-background {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 10;
}

.progress-bar {
  transition: stroke-dashoffset 0.5s;
  fill: none;
  stroke: #007bff;
  stroke-width: 10;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 5px), -50%);
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
}
