/* Thia Moderation Styles */
        .thia-loading-overlay {
            position: relative;
            margin-bottom: 20px;
        }

        .thia-loading-indicator {
            background-color: #0c2733;
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 20px;
			margin-top:20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #764ba2;
            animation: fadeIn 0.3s ease-in;
            transition: all 0.1s ease;
        }

        .thia-spinner {
            width: 24px;
            height: 24px;
            border: 3px solid #e9ecef;
            border-top-color: #764ba2;
            border-radius: 50%;
            animation: thia-spin 0.8s linear infinite;
        }

        .thia-loading-text {
            font-size: 19px;
            color: #CCCCCC;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
        }

.thia-result-message {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
	margin-top:20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
}

.thia-result-message.approved {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.thia-result-message.spam,
.thia-result-message.offensive,
.thia-result-message.hate,
.thia-result-message.threat {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.thia-result-message.error {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.thia-result-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.thia-result-text {
    font-size: 19px;
    flex: 1;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

@keyframes thia-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Disable submit button while processing */
.thia-processing .submit {
    opacity: 0.6;
    pointer-events: none;
}

.thia-processing .form-submit input {
    background-color: #6c757d !important;
    cursor: not-allowed;
}

            .thia-comments-header {
                background: #f0f0f1;
                padding: 12px 15px;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 15px;
				border-radius: 10px;
                color: #3c434a;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            }
            .thia-comments-header-icon {
                flex-shrink: 0;
            }
            .thia-comments-header-icon img {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: block;
            }
            .thia-comments-header-text {
                line-height: 1.4;
            }
            .thia-comments-header-text strong {
                font-weight: 600;
                color: #1e1e1e;
            }
            @media (max-width: 768px) {
                .thia-comments-header {
                    padding: 10px 12px;
                    font-size: 12px;
                }
                .thia-comments-header-icon img {
                    width: 28px;
                    height: 28px;
                }
            }
.thia-result-message.warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.thia-result-message.warning .thia-result-text {
    line-height: 1.5;
}

