#settings-button {
    width: 30px;
    height: 30px;
}

#settings-popover {
    width: 600px;
    height: 800px;

    background-color: transparent;
    border: none;

    padding: 0;
}

#settings-panel {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;

    padding: 20px;

    overflow-y: scroll;

    &>h1 {
        margin: 0;
    }
}

.settings-section-header {
    text-align: center;
}

.settings-entry {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.settings-entry-value {
    width: 40px;
    font-weight: bold;
    text-align: center;
}

.settings-entry-reset-button {
    width: 20px;
    height: 20px;
}