main {
    background: #DDDDDD;
    height: calc(100dvh - 70px);
    padding: 0 5vw;
    overflow: auto;
}

@media(min-width: 960px) {
    main {
        margin-left: 20px;
    }
}

.people {
    font-size: 18px;
    text-align: center;
}

.people span {
    display: inline-block;
    margin-right: 5px;
}

.people input {
    text-align: center;
}

.people input[type=checkbox] {
    height: 18px;
    width: 18px;
    margin: 0 2px;
}

.roulette_title {
    border: none;
    color: #222222;
    text-align: center;
    padding: 25px 0 5px 0;
}

.roulette_frame {
    background: orange;
    border-radius: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18vw;
    margin: 25px auto 0 auto;
}

.roulette_container {
    background: #222222;
    border-radius: 2vw;
    width: 60vw;
    height: 15vw;
    margin: 0 auto;
    overflow: hidden;
}

.roulette_text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 6vw;
    line-height: 6.5vw;
    text-align: center;
    width: 54vw;
    height: 15vw;
    padding: 0 3vw;
    user-select: none;
}

.info {
    text-align: center;
    height: 1em;
    margin: 5px auto 15px auto;
}

button {
    background: darkorange;
    border: black solid 2px;
    border-radius: 5vw;
    color: black;
    display: block;
    font-size: max(3vw, 18px);
    width: -fit-content;
    margin: 10px auto;
    padding: 5px 10vw;
    -webkit-appearance: none;
}

.stop, .reload, .getorder, .opentable, .reset {
    display: none;
}

.order {
    padding: 8px 0;
    text-align: center;
}

.log_title {
    border: none;
    margin-top: 15px;
}

.log {
    margin-top: 5px;
}

.dialog.login input {
    box-sizing: border-box;
    border: 1px solid darkgray;
    border-radius: 5px;
    width: 100%;
    padding: 5px;
}

.dialog .user {
    margin: 5px 10px;
}

.dialog .songlist {
    border: 1px solid black;
    margin-top: 5px;
    height: 170px;
    overflow-y: scroll;
}

.dialog .songlist .item {
    display: block;
    cursor: pointer;
    line-height: 24px;
    padding-left: 5px;
}

.dialog .songlist .item.selected {
    background: dodgerblue;
    color: white;
}

.dialog input[type=submit],
.dialog input[type=button] {
    background: darkorange;
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    width: 100%;
    height: 35px;
    -webkit-appearance: none;
}