.downloads {
    border-radius: 8px;
    border: 1px solid #c975c244;
    background-color: #3a2436ee;
    margin-left: 20px;
    margin-right: 36px;
    padding-left: 10px;
    padding-bottom: 6px;
}

.downloads-tabs {
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-right: 8px;
    gap: 4px;
}

.downloads-tabs-inner {
    display: flex;
    gap: 4px;
}

@media (max-width: 600px) {
    .downloads-tabs {
        flex-direction: column;
        align-items: flex-start;
    }

    .downloads-tabs-inner {
        width: 100%;
    }
}

.tablinks {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: 0.3s;

    margin-top: 6px;
    margin-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
    height: 40px;

    border-width: 2px;
    border-radius: 8px;
}

.tablinks:not(:hover):not(.active) {
    border-color: #00000022;
    background-color: #00000000;
}
.tablinks:hover {
    border-color: #00000000;
    background-color: #c975c211;
}
.tablinks.active {
    border-color: #00000000;
    background: #c975c2aa;
    background: linear-gradient(
        0deg,
        rgba(201, 117, 194, 0.3) 0%,
        rgba(201, 117, 194, 0.4) 100%
    );
}

.downloads-heading {
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.tabcontent {
    display: flex;
    gap: 10px;

    padding-left: 6px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 12px;
}

.tbrow {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}
.tabcontent:not(.tbrow) {
    flex-direction: column;
}
.tbrow:not(.tabcontent) {
    display: flex;
}

.tbcol {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
}

.dicon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    filter: invert();
}

.download-priority {
    background-color: #c975c255;
    font-weight: 450;
}
