#bilge-visitor-stats-container {
    display: flex;
    flex-wrap: wrap; /* Ekran küçüldüğünde alt satıra geçmesi için */
    gap: 15px;
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    transition: opacity 0.3s ease-in-out;
    background: transparent;
    box-shadow: none;
}

#bilge-visitor-stats-container.loading .stat-count,
#bilge-visitor-stats-container.loading .stat-value {
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    flex: 1; /* Öğelerin esnek büyümesini sağlar */
    min-width: 150px; /* Minimum genişlik */
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* YENİ: Botlar için özel kutu stili */
.stat-item-bots {
    flex-basis: 100%; /* Tüm satırı kaplamasını sağlar */
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.stat-icon {
    font-size: 26px;
    margin-bottom: 5px;
}

.stat-item-bots .stat-icon {
    margin-bottom: 0;
}

.stat-count {
    font-weight: bold;
    font-size: 1.2em;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

/* YENİ: Bot isimlerinin görüneceği alan */
.stat-value {
    font-weight: bold;
    font-size: 0.95em;
    color: #8E44AD; /* Mor renk */
}

/* Renkler */
.stat-item:nth-child(1) .stat-count { color: #4CAF50; }
.stat-item:nth-child(2) .stat-count { color: #FF9800; }
.stat-item:nth-child(3) .stat-count { color: #2196F3; }
.stat-item:nth-child(4) .stat-count { color: #9C27B0; }