/* Swap the buttons */
#selectorDiv .d-flex.flex-wrap.gap-2 > div:first-child {
    order: 2; /* Move first button to second position */
}

#selectorDiv .d-flex.flex-wrap.gap-2 > div:last-child {
    order: 1; /* Move second button to first position */
}

/* Remove border/shadow ONLY from the first card (Inventor Portal) */
.card.lead,
.card.lead .card-body {
    border: none !important;
    box-shadow: none !important;
}


/* Optional: normalize padding inside the header container */
.card-header {
    padding: 0.75rem 1.25rem !important;
    display: flex;
    align-items: center;
    min-height: 60px; /* Adjust for consistency */
}


