.export-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.export-bar-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    margin-right: 0.25rem;
}

.btn-export {
    padding: 0.4rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-export:hover:not(:disabled) {
    border-color: #3b82f6;
    color: #1d4ed8;
    background: #eff6ff;
}

.btn-export-pdf:hover:not(:disabled) {
    border-color: #dc2626;
    color: #b91c1c;
    background: #fef2f2;
}

.btn-export:disabled {
    opacity: 0.65;
    cursor: wait;
}

.export-area-capturing {
    background: #fff !important;
}
