/* Paleta de grises */
:root {
  --gris-claro: #f5f5f5;
  --gris-medio: #cccccc;
  --gris-oscuro: #333333;
  --gris-boton: #555555;
  --gris-boton-hover: #777777;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--gris-claro);
  color: var(--gris-oscuro);
  margin: 30px;
}

h1 {
  color: var(--gris-oscuro);
}

label {
  font-weight: bold;
}

input[type="file"],
input[type="text"] {
  margin-top: 5px;
  padding: 8px;
  border: 1px solid var(--gris-medio);
  border-radius: 4px;
  background-color: #fff;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--gris-boton);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--gris-boton-hover);
}

#progressContainer {
  width: 100%;
  background-color: var(--gris-medio);
  border-radius: 4px;
  margin-top: 15px;
  height: 20px;
  overflow: hidden;
}

#progressBar {
  width: 0%;
  height: 100%;
  background-color: var(--gris-oscuro);
  transition: width 0.3s;
}
