.gossiped-moderation-controls {
    background: white;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.moderation-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.moderation-filters label {
    font-weight: 500;
    color: #374151;
}

.moderation-filters select,
.moderation-filters input[type="text"] {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
}

.gossiped-comments-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gossiped-comment-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gossiped-reply-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    margin-left: 40px;
}

.comment-replies-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
}

.comment-date {
    color: #64748b;
    font-size: 14px;
}

.comment-actions {
    display: flex;
    gap: 8px;
}

.comment-content {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #64748b;
    font-size: 14px;
}

.page-link {
    color: #2563eb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-link:hover {
    text-decoration: underline;
}

.replies-count {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.delete-btn {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}

.suspend-btn {
    background: #fef3c7 !important;
    color: #d97706 !important;
    border: 1px solid #fde68a !important;
}

.ban-btn {
    background: #f3e8ff !important;
    color: #7c3aed !important;
    border: 1px solid #e9d5ff !important;
}

.gossiped-loading {
    text-align: center;
    padding: 50px;
    color: #64748b;
}