#go-stats {
    max-width:1340px;
    width: 100%;
    margin-top: 50px;
    /*min-height: 100vh;*/
}
#go-stats.go-page {
    margin:auto;
    padding: 20px;
}

.go-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
}
#go-stats.go-page .go-cards{
    margin-bottom: 150px
}

.go-card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    /*margin: 10px;*/
    flex-basis: calc(100%/3 - (1 - 1/3)*25px);
}
@media only screen and (max-width: 768px) {
    .go-card {
        flex-basis: 100%;
    }
}

.go-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.go-card-container {
    padding: 16px;
}
.go-stat-desc {
    font-size: 14px;
    color: #666;
}
.go-card-title {
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    min-height: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.44);
}
.go-card-value {
    padding: 10px 0;
    font-weight: bold;
    font-size: 25px;
}
#go-stats .go-card-note {
    font-size: 14px;
    color: #666;
}

#go-stats img.go-logo-icon {
    height: 50px;
    vertical-align: text-bottom;
    padding-right: 10px;
    display: inline-block;
}

#go-stats.go-page h2 {
    padding-bottom: 30px;
    margin-inline-start: 20px;
}

#go-stats .site-description{
    padding-bottom: 40px;
}
#go-stats.go-page .site-description{
    margin-inline-start: 20px;
}

#go-stats .go-card-array {
    height:200px;
    overflow-y: scroll;
}

.loading-spinner {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-right: 10px solid green;
    border-bottom: 10px solid red;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
