﻿/* ÔöÇÔöÇ Quote Blotter ÔÇö Accordion card interactions ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */

/* Bordure orange sur la carte quand l'accordion est ouvert
   Identique au TSX: borderColor: expanded ? THEME.primary : "transparent"
   Mantine place `data-active` sur AccordionControl et AccordionItem quand ouvert */
.qb-card {
    transition: border-color 0.2s ease;
}

.qb-card:has([data-active]) {
    border-color: var(--mantine-color-brand-5) !important;
}

/* Chevron rotation 180┬░ au clic ÔÇö sans aucun callback Dash */
.qb-chevron {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

[data-active] .qb-chevron {
    transform: rotate(180deg);
}
