body, html {
  font-size: 15px;
  font-family: monospace, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
/* Estilo para el formulario de carga de archivos */
input[type="file"] {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

input[type="file"]:focus {
  box-shadow: none;
}

/* Agregar margen superior al formulario */
form {
  margin-top: 1rem;
}

/* Estilo para la lista de archivos */
ul.list-group {
  margin-top: 1rem;
}

/* Estilo para los elementos de la lista */
.list-group-item {
  display: flex;
  justify-content: space-between;
}

/* Estilo para el botón de carga de archivos */
.btn-primary {
  background-color: #007BFF;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}
