/* ZLR Frontend Styles - Single Listing Page Only */
/* No badges on listing cards - avoids conflicts with existing theme badges */

/* Last updated info on single listing page */
.zlr-last-updated {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    margin: 10px 0 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    border: 1px solid #eee;
}
.zlr-last-updated.zlr-updated-fresh {
    background: #E8F5E9;
    border-color: #C8E6C9;
    color: #2E7D32;
}
.zlr-last-updated.zlr-updated-normal {
    background: #f8f9fa;
    border-color: #e0e0e0;
    color: #666;
}
.zlr-last-updated.zlr-updated-aging {
    background: #FFF3E0;
    border-color: #FFE0B2;
    color: #E65100;
}
.zlr-last-updated.zlr-updated-stale {
    background: #FFEBEE;
    border-color: #FFCDD2;
    color: #C62828;
}
.zlr-updated-icon {
    font-size: 14px;
    flex-shrink: 0;
}
.zlr-verified-fresh {
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

/* Stale warning banner */
.zlr-stale-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin: 8px 0 12px;
    border-radius: 8px;
    font-size: 13px;
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    color: #E65100;
}
.zlr-stale-icon {
    font-size: 16px;
    flex-shrink: 0;
}
.zlr-stale-text {
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .zlr-last-updated {
        font-size: 12px;
        padding: 6px 10px;
    }
    .zlr-stale-warning {
        font-size: 12px;
        padding: 8px 12px;
    }
}