.reply-quote {
    position: relative;
    margin-bottom: 5px;
    padding: 6px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 0.5rem;
    font-style: italic;
    color: #495057;
    transition: all 0.3s ease;
}

/* Dark mode variant */
.reply-quote.dark {
    background: var(--secondary);
    border-left-color: #60a5fa;
    color: #cbd5e1;
}

.reply-quote.dark::before {
    color: #60a5fa;
}


/* Alternative modern style */
.reply-quote.modern {
    background: rgba(59, 130, 246, 0.05);
    border-left: none;
    border-radius: 12px;
    padding: 1.25rem 1.5rem 1.25rem 3rem;
    backdrop-filter: blur(10px);
}

.reply-quote.modern::before {
    content: '💬';
    font-size: 1.5rem;
    opacity: 0.6;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
}

.reply-quote.modern::after {
    display: none;
}

/* Minimal elegant style */
.reply-quote.minimal {
    background: transparent;
    border-left: 3px solid #e2e8f0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 0.75rem 0;
    box-shadow: none;
}

.reply-quote.minimal::before {
    display: none;
}

.reply-quote.minimal::after {
    background: #cbd5e1;
}

.reply-quote.minimal:hover {
    border-left-color: #3b82f6;
    transform: none;
}