/* Quote row highlighting for pending questions */
.quote-row-highlight {
    background-color: #fefce8 !important; /* bg-yellow-50 equivalent */
    border-left: 4px solid #facc15 !important; /* border-l-4 border-l-yellow-400 equivalent */
}

.dark .quote-row-highlight {
    background-color: rgba(254, 240, 138, 0.1) !important; /* dark:bg-yellow-950/20 equivalent */
    border-left-color: #eab308 !important; /* dark:border-l-yellow-500 equivalent */
}

/* Ensure Tailwind classes work properly */
.bg-yellow-50 {
    background-color: #fefce8 !important;
}

.dark .dark\:bg-yellow-950\/20 {
    background-color: rgba(254, 240, 138, 0.1) !important;
}

.border-l-4 {
    border-left-width: 4px !important;
}

.border-l-yellow-400 {
    border-left-color: #facc15 !important;
}

.dark .dark\:border-l-yellow-500 {
    border-left-color: #eab308 !important;
}
