* {
    font-family: Tahoma,Roboto,Verdana,Helvetica,Sans-Serif;
}
body {
    background-color: #f6fff1;
    margin: 0px;
}
a {
    color: #3f7137;
}
.content {
    display: flex;
    align-items: flex-start;
}
.box {
    border-radius: 5px;
    border: 1px #277031 solid;
    margin: 10px;
    background-color: white;
    position: relative;
    min-height: 60px;
}
.box > div {
    padding: 5px;
}
.box > div:nth-child(2) {
    font-size: small;
}
#stats {
    font-size: small;
}
.header {
    background-color: #277f31;
    color: white;
}
input {
    margin: 5px;
}
.width-30 {
    min-width: 350px;
    max-height: 100px;
}
.width-70 {
    min-width: 350px;
    width: 100%;
}
@media screen and (max-width: 700px) {
    .width-70 {
        width: 96%;
    }
    .content {
        flex-direction: column-reverse;
    }
}
#name {
    width: 150px;
}
.ball {
    width: 20px;
    height: 20px;
    background-image: url(ball.png);
    animation: rotate linear 1s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    
}
#results table {
    width: 100%;
    text-align: center;
    border: 1px solid #277f31;
    border-spacing: 0;
}
#results th {
    background-color: #578061;
    border: 1px solid #578061;
    color: white; 
}
#results tr:hover {
    background-color: #e6eee1;
}
#results td {
    border-top: 1px solid #277f31;
    padding: 3px;  
}
.flag {
    border: 1px solid #ddddcc;
}
#message {
    color: #d50a0a;
    margin: 5px;
    font-size: 12px;
    font-weight: bold;
}
@keyframes rotate {
    0% {
        rotate: 0deg;
    }
    50% {
        rotate: 180deg;
    }
    100% {
        rotate: 360deg;
    }
}
.showMore {
    margin: 10px 45%;
    width: 100px;
    background-color: #e6eee1;
    cursor: pointer;
}
.showMore:hover {
    background-color: #e6fff1;
}
.loading::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: url(ball.png) 0 0 no-repeat;
    animation: rotate linear 1s infinite;
    background-size: contain;
}
.outdated::after {
    content: " older data";
    font-size: 8px;
}
.updateError::after {
    content: " update error";
    font-size: 8px;
    color: #d50a0a;
    font-weight: bold;
}
.footer {
    width: 100%;
    height: 30px;
    background-color: #277031;
    color: white;
    text-align: center;
}
.banner {
    text-align: center;
    margin: 10px;
}
