/* Blog Comments Styles */

/* Honeypot */
.honeypot {
    display: none;
}

/* Reply Indicator */
.reply-indicator {
    display: none;
    margin-bottom: 12px;
    padding: 8px;
    background: var(--background);
    border-radius: 6px;
    border: 1px solid #eee;
}

.reply-indicator.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-cancel-reply {
    margin-left: 8px;
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.btn-cancel-reply:hover {
    text-decoration: underline;
}

/* Status Messages */
.comment-status {
    margin-top: 12px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.comment-status.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.comment-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}