.gossiped-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.analytics-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.analytics-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1e293b;
}

.commenter-item,
.active-user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.commenter-item:last-child,
.active-user-item:last-child {
    border-bottom: none;
}

.commenter-info,
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.commenter-name,
.user-name {
    font-weight: 500;
    color: #1e293b;
}

.commenter-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.commenter-count {
    font-weight: 600;
    color: #2563eb;
}

.commenter-last {
    font-size: 11px;
    color: #64748b;
}

.user-activity {
    font-size: 12px;
    color: #64748b;
}

.gossiped-analytics-loading {
    text-align: center;
    padding: 50px;
    color: #64748b;
}