.downloads_panel {
    width: 70vw;
    height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #313131;
    padding: 10px;
    box-sizing: border-box;
    background-color: #484848;

    scrollbar-width: thin;
    scrollbar-color: #888 #1e1e1e;
    max-width: 500px;
}

.download_panel_item {
    height: 72px;
    background-color: #1c1c1c;
    border: 2px solid #aeaeae;
    color: white;
    font-size: 22px;
    display: inline-flex;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}

.download_panel_item:hover {
    color: yellow;
}

.download_panel_item p {
    position: relative;
    text-align: center;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    margin-left: 10px;
}

#versions_title {
    color: white;
    font-size: 32px;
    text-align: center;
}

.inner_button_download {
    position:relative;
    margin: 8px;
    height: 50px;
    width: 50px;
    font-size: large;
    text-align: center;
    border: 1.5px solid white;
}

.downloads_panel::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Scrollbar en navegadores WebKit */
.downloads_panel::-webkit-scrollbar {
    width: 10px;
}

.downloads_panel::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 5px;
}

.downloads_panel::-webkit-scrollbar-thumb {
    background: #888 !important;
    border-radius: 5px;
    visibility: visible;
}

.downloads_panel::-webkit-scrollbar-thumb:hover {
    background: #555;
}