.center {
    display: flex;
    justify-content: center;
    align-content: center;
}

#best-dates {
    width: 100%;
}

#create-vote {
    display: grid; justify-content: end;
}

ul {
    margin: 1rem !important;
    list-style: circle !important;
}

.box {
    margin-top: 4rem;
    margin-bottom: 4rem;
}




@media only screen and (max-width: 600px) {
    
    .center {
        display: flex;
        height: auto;
    }
    
    table {
        width: 100%;
        overflow-x: scroll;
        display: block;
    }

    .box {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        max-width: 90%;
    }
    
    .vote-legend {
        display: none;
    }
    
    #create-vote {
        display: block;
    }
}

@media (prefers-color-scheme: dark) {
    html {
        filter: invert(.85);
    }

    .ignore-dark-theme {
        filter: invert(.85);
        color: black !important;
    }

}