
.changelogList_header {
    display: flex;
    width: 100%;
    gap: 1.5em;
}

.changelogList_header form {
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

.changelogList_header h1 {
    width: auto;
    white-space: nowrap;
    position: relative;
}


/* style for the checkbox on an expanded form */
.changelogList_header .versionChildForm_container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.changelogList_header form input[type="checkbox"] {
    display: none;
}

.changelogList_header form > div > div > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0.5em 0 0;
}


.changelogList_header form > div > div > div > label {
    margin: 0.15em;
    border-radius: 1em;
    padding: 0.1em 0.4em;
    cursor: pointer;
    background-color: rgba(0,0,0,0.03);
    border: 3px solid transparent;
}
.darkmode .changelogList_header form > div > div > div > label {
    background-color: rgba(0,0,0,0.06);
}

.changelogList_header form > div > div > div > label:hover {
    border-color: #b1dccf;
    transition: 0.1s;
}
.darkmode .changelogList_header form > div > div > div > label:hover {
    border-color: #11594a;
}

.changelogList_header form > div > div > div input[type="checkbox"]:checked + label {
    background-color: rgba(0,0,0,0.01);
    border-color: #16a085;
    color: inherit;
}
.darkmode .changelogList_header form > div > div > div input[type="checkbox"]:checked + label {
    background-color: rgba(0,0,0,0.03);
    border-color: #16a085;
    color: white;
}








.changelogList_header button[type='submit'] {
    border: 2px solid rgba(0,0,0,0.05);
    background-color: rgba(0,0,0,0.01);
    color: #757575;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 5px;
}

.darkmode .changelogList_header button[type='submit'] {
    color: rgba(255,255,255,0.25);
}

.changelogList_header button[type='submit']:hover {
    cursor: pointer;
    color: #16a085;
}

.changelogList_header button[type='submit'] i {
    font-size: 2.3em;
    width: 1em;
    margin: 7px;
    padding: 0;
}

.changelogList_header .actionButton i {
    margin: 7px;
}





.changelogList_header .clickableVersions_container {
    position: absolute;
    top: 98%;
    left: 0;
    z-index: 25;
    width: 600px;
    max-width: 600px;
    min-height: 25px;
    border-radius: 12px;
    padding: 0.5em;
    display: none;
    background-color: rgb(252,252,252);
    border: 2px solid rgba(220,220,220,1);
    box-shadow: 5px 20px 20px -10px rgba(0,0,0,0.2);
}
.darkmode .changelogList_header .clickableVersions_container {
    background-color: rgba(21,20,20,1);
    border: 4px solid rgba(57,56,56,0.86);
    box-shadow: 6px 30px 30px -5px rgba(0,0,0,0.69);
}

.changelogList_header h1:hover .clickableVersions_container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.changelogList_header .clickableVersions_container p.title {
    width: 100%;
    margin: 0 0 10px 6px;
    font-size: 1.2rem;
}

.changelogList_header .clickableVersions_container .item {
    text-decoration: none;
    border: none;
    padding: 6px 18px;
    margin: 5px;
    font-size: 0.5em;
    border-radius: 1em;
    display: flex;
    align-items: center;
    position: relative;
    color: #333;
    background-color: rgb(230,230,230);
}
.darkmode .changelogList_header .clickableVersions_container .item {
    color: #bbbbbb;
    background-color: rgba(255,255,255,0.07);
}

.changelogList_header .clickableVersions_container .item:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #16a085;
    color: #222;
    background-color: rgb(220,220,220);
}
.darkmode .changelogList_header .clickableVersions_container .item:hover {
    text-decoration-color: #16a085;
    color: #DEDEDE;
    background-color: rgba(255,255,255,0.15);
}

.changelogList_header .clickableVersions_container .item i {
    position: absolute;
    top: 0;
    left: 83%;
    color: #16a085;
    height: 100%;
    display: none;
    align-items: center;
    font-size: 1.3em;
}

.changelogList_header .clickableVersions_container .item:hover i {
    display: inline-flex;
}









.tableViewModes {
    margin: 0 0 0 40px;
}
.tableViewModes select {
    border: 3px solid rgba(0,0,0,0.1);
    background-color: rgba(255,255,255,0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../img/dropdown/arrow.png') no-repeat right;
    cursor: pointer;
    border-radius: 5px;
    color: inherit;
    font-family: inherit;
    outline: none;
    padding: 5px 2em 5px 5px;
    background-color: rgb(250,250,250) !important;
}
.darkmode .tableViewModes select {
    border: 3px solid rgba(255,255,255,0.1);
    background-color: rgb(13,13,13) !important;
}









@media (max-width: 899px) {
    .changelogList_header h1 {
        white-space: normal;
    }
    .changelogList_header {
        flex-wrap: wrap;
    }
    .versionChildForm_container form {
        margin: 0;
        flex-wrap: wrap;
    }
    .tableViewModes {
        /*margin: 5px;*/
        display: none;
    }
}








