.download-list {
  background-color: #f7f7f7; /* light gray background */
  padding: 3px;
  border: 1px solid #ccc;
  width: 99%; /* adjust the width as needed */
}

.download-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.download-list li {
  padding: 5px;
  display: grid;
  grid-template-columns: 0.01fr 1fr; /* first column is 25% wide, second column takes the rest */
  gap: 10px; /* add some space between the divs */
  width:99%;

}

.download-list a {
  text-decoration: none;
  color: #337ab7; /* adjust the link color as needed */
  position: relative;
  display: inline-block;
}

.file-link {
  text-decoration: none;
  padding: 10px;
  color: #337ab7; /* adjust the link color as needed */
  position: relative;
  display: inline-block;
  width: 99%;
}