* {
    padding: 0;
    margin: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

body {
    width: 350px;
    background-color: #8FAADC;
    margin: 10px auto;
}

.green {
    color: #4DB56A;
}

.yellow {
    color: #ffbf7f
}

.red {
    color: #ff7f7f;
}

.blue {
    color: #8FAADC;
}

.gray {
    color: #808080;
}

.material-symbols-rounded.fill {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.title {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 3em;
    color: #FFFFFF;
}

.sub-title {
    text-align: center;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.block {
    padding: 10px;
    border-radius: 10px;
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    margin: auto;
}

.username {
    border-bottom: 1px solid #808080;
    width: 8em;
    margin: auto;
}

.emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.usermark {
    margin-right: 5px;
}

table {
    border-collapse: collapse;
    margin: auto;
    margin-top: 0.5em;
}

table th,
table td {
    border: solid 1px black;
    padding: 0.25em;
}

table th {
    background-color: #8FAADC;
    color: #FFFFFF;
    font-weight: normal;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 9999;
}

.completed {
    opacity: 0;
    visibility: hidden;
}

input {
    font-size: 20px;
    margin: 2px;
}

input[type=text],
input[type="password"] {
    cursor: text;
    width: 75px;
}

input[type=date] {
    cursor: text;
    width: 150px;
}

.label {
    display: inline-block;
    width: 70px;
    margin-right: 5px;
}

select {
    font-size: 20px;
    margin: 2px;
}