.gossiped-dashboard-content {
    margin: -6px -12px -12px -12px;
    padding: 12px;
}

.gossiped-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.gossiped-recent-activity h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.activity-list {
    max-height: 200px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-avatar img {
    border-radius: 50%;
    border: 1px solid #e2e8f0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 3px;
}

.activity-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.activity-text a:hover {
    text-decoration: underline;
}

.activity-time {
    font-size: 11px;
    color: #64748b;
}

.no-activity {
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-style: italic;
}

.gossiped-widget-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gossiped-widget-loading {
    text-align: center;
    padding: 20px;
    color: #64748b;
}

@media (max-width: 782px) {
    .gossiped-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px 8px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .gossiped-widget-actions {
        flex-direction: column;
    }
}