/* Stats Container */
 .gims-stats-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #3b82f6;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */

.gims-stats-header {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #374151;
}

.gims-stats-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Body */

.gims-stats-grid {
    padding: 10px 12px;
}

/* Row Layout */

.gims-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.gims-stats-row:last-child {
    margin-bottom: 0;
}

/* Stat Card */

.gims-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 180px;
    padding: 6px 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}

.gims-stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gims-stat-label {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.gims-stat-count {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* Fine Print */

.gims-stats-note {
    margin-left: 8px;
    font-size: 11px;
    color: ##333;
    font-style: italic;
    line-height: 1.4;
}

/* Second Row */

.gims-stats-row-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile */

@media (max-width: 768px) {

    .gims-stat-item {
        min-width: calc(50% - 5px);
    }

    .gims-stats-row-secondary {
        flex-direction: column;
        align-items: flex-start;
    }

    .gims-stats-note {
        margin-left: 0;
        margin-top: 4px;
    }
}