/* Der Grid-Container */
.stats-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 Spalten für maximale Flexibilität */
    grid-gap: 15px;
    margin: 20px 0;
}

/* Basis-Stil für jede Box (Glassmorphismus wie gehabt) */
.stats-box {
    background: rgb(255 255 255 / 3%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 217, 232, 0.2);
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

/* Positionierung laut deinem Bild */
.box-medium { grid-column: span 2; }    /* Oben Links (ca. 1/3) */
.box-large-top { grid-column: span 4; } /* Oben Rechts (ca. 2/3) */
.box-fullwidth {
    grid-column: span 6;
    min-height: 180px;
}
.box-small { grid-column: span 2; }     /* Die 3 unten (jeweils 1/3) */

/* Überschriften in den Stats */
.stats-box h3 {
    font-family: 'rajdhaniregular';
    font-size: 14px;
    color: #613b4d;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 45, 120, 0.2);
}

/* --- DAS UNSICHTBARE SCROLLEN --- */
.stats-content {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 180px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    color: #919191;
}

.stats-content::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Responsive: Auf Handys alles untereinander */
@media (max-width: 800px) {
    .stats-grid-container {
        display: block;
    }
    .stats-box {
        margin-bottom: 15px;
        width: 100%;
    }
}

.statistic-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    margin: 10px 0;
}

.statistic-box-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin: 10px 0;
}

.genderbox {
    text-align: center;
    text-transform: uppercase;
    font-family: 'rajdhaniregular';
    background: #ffffff08;
}

.groupbox {
	    text-align: center;
    text-transform: uppercase;
    font-family: 'rajdhaniregular';
    background: #ffffff08;
}

.frame-recentthreads {
    /* background: #0000001f; */
    width: 23%;
    height: 165px;
    /* padding: 20px; */
    overflow-y: scroll;
    float: left;
    margin: 7px 0px 0px 5px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.frame-recentthreads::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.frame-recentthreads {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.recentthreads {
    padding: 0px 10px;
    font-size: 12px;
    background: #ffffff08;
    margin: 5px 0px;
    width: 100%;
}

.newestuserbox {
    text-align: center;
    line-height: 14px;
    text-transform: uppercase;
    color: #606060;
    font-family: 'rajdhaniregular';
    font-size: 17px;
}

.sb-code {
    text-align: center;
    background: #ffffff08;
    padding: 5px 5px;
    border: 1px #1c464a dotted;
    margin-top: -6px;
}