.colors {
    background-color: #212542;
    background-color: #303853;
    background-color: #EDEFFC;
    background-color: #276844;
    background-color: #bb2a2a;
    background-color: #306674;
}

.updates_backer {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 40px);
    display: none;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.updates_header_view {
    background-color: transparent;
    width: 90%;
    height: 50px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.updates_name {
    color: #EDEFFC;
    font-weight: 800;
    font-size: xx-large;
    user-select: none;
    cursor: pointer;
}

.updates_listing_body {
    background-color: #303853;
    width: 90%;
    height: calc(100% - 70px);
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: none;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    overflow-y: auto;
    color: #EDEFFC;
    gap: 10px;
}

.update_frame {
    background-color: #306674;
    width: 90%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: sans-serif;
}

.updates_load_more_button {
    background-color: #303853;
    height: 30px;
    border: none;
    outline: none;
    color: #EDEFFC;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
    cursor: pointer;
}
























.updates_listing_body::-webkit-scrollbar {
    width: 10px;
}

.updates_listing_body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.updates_listing_body::-webkit-scrollbar-thumb {
    background: #1a1f30;
    border-radius: 10px;
    border: none;
}

.updates_listing_body::-webkit-scrollbar-thumb:hover {
    background: #5b6688;
}

.updates_listing_body::-webkit-scrollbar-corner {
    background: #e0e0e0fd;
}