body {
    text-align: center;
    background-color: rgb(0, 68, 0);
    color: bisque;
    font-family: Arial, Helvetica, sans-serif;
}

td {
    padding-left: 10px;
    padding-right: 10px;
}

.right_up {
    position: fixed;
    right: 10px;
    top: 0px;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    -webkit-animation-name: fadeIn;
    /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content */
div.result_player {
    visibility: hidden;
    position: fixed;
    left: 0%;
    background-color: #fefefe;
    width: 30%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

div#RESULT_DIV {
    top: 25%;
}

div#RESULT_DIV1 {
    top: 60%;
}

div#STATS_DIV {
    visibility: hidden;
    position: fixed;
    right: 0%;
    top: 5%;
    background-color: bisque;
}

div#SETTINGS_DIV {
    visibility: hidden;
    position: fixed;
    right: 0%;
    top: 5%;
    background-color: bisque;
    text-align: left;
}

div.confirm_dialog {
    visibility: hidden;
    position: fixed;
    left: 35%;
    bottom: 50%;
    background-color: bisque;
    width: 30%;
}

div#HEADER {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

div#HEADER1 {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
    color: black;
}

div#FOOTER {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

div#FOOTER1 {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {
        left: -500px;
        opacity: 0
    }

    to {
        left: 0%;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        left: -500px;
        opacity: 0
    }

    to {
        left: 0%;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}