.dropdown_header {
    background-color: #f1f1f1;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}
.dropdown_header:hover {
    background-color: rgb(var(--highlight1));
}
.dropdown_button {
    background-color: #f1f1f1;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}
.dropdown_content {
    display:none;
    background-color: #f1f1f1;
    padding: 16px;
}
.active{
    background-color: rgb(var(--highlight1));
    filter: brightness(105%);
}
.dropdown_header_text {
    display:block;
    padding: 16px;
    user-select: none;
}
.dropdown_header_text:hover{
    font-weight: bold;
}
#dropdown_container {
    margin:auto;
    margin-top: 40px;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}
#footer {
    position:absolute;
    bottom:0;
    width:calc(100% - 20px);
}
body {
    min-height:calc(100vh - 303px);
    padding-bottom: 303px;
    position: relative;
}