* {
    touch-action: manipulation;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background-image: url(assets/bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

#root {
    max-width: 720px;
    margin: 0 auto;
}

#currentRN {
    color: #fff;
    /* border: 1px solid red; */
    text-align: center;
    font-size: 10em;
}

#nextRN {
    text-align: center;
    margin: 1em;
    font-size: 2em;
    padding: 5px 25px;
    background-color: purple;
    color: #f8f8f8;
    font-family: monospace;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 2px 2px 4px #ccc;
    transform: scale(1.2);
    transition: all 250ms ease;
}

#nextRN:active {
    transform: scale(1);
}

#reload {
    position: absolute;
    top: 1em;
    left: 1em;
    font-size: 1.5em;
    height: 1.5em;
    width: 1.5em;
}

#lutable {
    background-color: rgba(233, 30, 99, 0.3);
    border: 1px solid blue;
    height: calc(100vh - 24em);
    margin: 5px;
    width: calc(100% - 10px);
    overflow: auto;
}

#lutable table {
    width: 100%;
    font-weight: bold;
    font-size: 2em;
    color: transparent;
}

#lutable th, #lutable td {
    border: 1px solid #222;
}

#lutable table td.visited {
    background-color: white;
    color: #222;
}

#modal {
    display: none;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    padding: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

#modal.show {
    display: block;
}

#modal .modal-body {
    position: absolute;
    top: 50%;
    background-color: #f8f8f8;
    padding: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#modal .modal-body .action-area {
    display: flex;
    justify-content: space-evenly;
}