/**Layer 118: Comment Moderation*/

.comments-widget {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 600px;
}

.comments-widget h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.input-area {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

#comment-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    resize: vertical;
    min-height: 48px;
}

#comment-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

#comment-submit {
    padding: 0 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#comment-submit:hover {
    background: #2563eb;
}

#comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #cbd5e1;
}

.msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.msg-user {
    font-weight: 700;
    color: #334155;
}

.msg-body {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}