
#controls{
    background-color: var(--aux_color);
    text-align: center;
    height: auto;
    padding: 8px;
    border-top: 1px solid var(--secondary_color);
    min-height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#save_selection,#load_selection,#update_presenters{
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    filter: opacity(0.9);
    max-width: calc(100% - 20px);
}

#save_selection:disabled,#load_selection:disabled,#update_presenters:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#save_selection:hover,#load_selection:hover,#update_presenters:hover{
    filter: opacity(1);
}

#save_selection,#load_selection{
    background-color: var(--secondary_color);
    color: var(--primary_color);
    font-weight: bold;
    font-size: min(1.1em, 6.5vi);
}

#load_selection{
    
}

#update_presenters{
    background-color: rgb(170, 218, 145);
    font-size: min(1.3em, 7vi);
}