body {
    font-family: sans-serif;
}

* {
    user-select: none;
}

.container {
    height: 500px;
    width: 700px;
    position: relative;
    padding: 0;
    margin: 0;
    border: solid gray 2px;
    resize: both;
    overflow: hidden;
    scrollbar-width: none;
}

.container::-webkit-scrollbar {
    display: none;
}

.area {
    background-color: whitesmoke;
    max-height: 100%;
    height: 100%;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

.bottomrow {
    display: flex;
    align-items: center;
    justify-content: stretch;
    height: 25px;
    position: absolute;
    bottom: 0px;
    background-color: gray;
    width: 100%;
}

.bottomrow>button {
    border: none;
    height: 20px;
    max-height: 20px;
    padding-right: 10px;
    padding-left: 10px;
    margin: 10px;
    background-color: darkgray;
    border: 1px solid white;
}

.buttonrow {
    height: 50px;
    width: 100%;
    background-color: gray;
    display: flex;
    align-content: space-evenly;
}

:is(.buttonrow, .confirm) button {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 3px 1px;
    border: 1px solid white;
}

.buttonrow>button:not(.special) {
    background-color: lightslategrey;
}

.buttonrow>button:not(.special, .blocked):hover {
    background-color: rgb(112, 128, 144);
}

.buttonrow>button:not(.special, .blocked):active {
    background-color: rgb(94, 107, 121);
}

.buttonrow>button.special {
    background-color: white;
}

.buttonrow>button.time {
    background-color: lightslategrey;
}

.confirm {
    z-index: 100;
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid lightslategray;
    padding: 10px;
    background-color: gray;
}

.confirm h1 {
    font-weight: 500;
}

.confirm button {
    font-size: large;
}

.confirm>div {
    display: flex;
}

.blocked {
    color: lightslategray;
}


.area>h1 {
    margin: 0;
    background-color: gray;
}

.area h1 {
    text-align: center;
    margin-bottom: 5px;
}

.area>.center {
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    align-content: center;
    justify-content: center;
}

.uibutton {
    height: auto;
    margin: auto;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid lightslategray;
    background-color: lightgray;
}

label {
    margin-top: 10px;
}

input[type="text"] {
    padding: 10px;
    margin: 1px;
    border: 3px solid gray;
    background-color: lightgray;
}

.late {
    background-color: limegreen !important;
}

.early {
    background-color: red !important;
}

.tostart {
    background-color: whitesmoke !important;
}

.statusbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    height: 30px;
    max-height: 30px;
    background-color: gray;
}

#defaultview>.interface>.stops>div {
    border: 1px solid black;
    background-color: lightgray;
}

.sounds {
    display: flex;
    flex-direction: column;
}

.sounds>div {
    margin: 0;
    height: 80px;
    padding: 10px;
    border: 1px solid lightslategray;
    background-color: lightgray;
}

.sounds>div>h2 {
    margin: 0;
}

#editorsounds>div {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

#editorsounds>div>input:nth-child(1) {
    width: 30%;
}

#editorsounds>div>input:nth-child(2) {
    width: 65%;
}

#editorsounds>div>div {
    display: flex;
    width: 5%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: solid 3px gray;
    background-color: crimson;
}

.savebar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    background-color: gray;
}

.savebar > * {
    margin: 0 !important;
}