body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.upload-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 500px;
  text-align: center;
}

.upload-container h2,
.upload-container h3 {
  margin-bottom: 20px;
  color: #333;
}

input[type='file'],
input[type='text'] {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}

.progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  margin-top: 10px;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #28a745;
  width: 0;
  transition: width 0.4s;
}

#status,
#searchResults {
  margin-top: 10px;
  color: #333;
}

ul{
  list-style: lower-roman;
}
li{
  color: black;
  background-color: white;
  padding: 5px;
  margin: 2px 0px;
  text-decoration: none;
  text-align: start;
}
a{
  text-decoration: none;
color: black;

}