#section_download table {
    width: 100%;
    margin: 30px 0;
  border-collapse: collapse; /* Collapses borders into a single border */
  border-spacing: 0;
}

#section_download table tr td {
    padding: 8px 10px;
    border: none;
}

#section_download table tr {
    transition: background-color cubic-bezier(0.1, 0.9, 0.2, 1) 0.3s;
}

#section_download table tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#section_download table tr td:nth-child(1) {
    width: 40%;
}

#section_download table tr td:nth-child(2) {
    width: 10%;
}

#section_download table tr td:nth-child(3) {
    width: 20%;
}

#section_download table tr td:nth-child(4) {
    width: 15%;
    text-align: center;
}

#section_download table tr td:nth-child(5) {
    width: 15%;
    text-align: center;
}

#section_download table tr td.wide {
    width: 100%;
}