/* ========================================
   COMPANIES
   ======================================== */
   
/* Badge portefeuille */
.portfolio-badge {
    display: inline-block;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Bouton toggle portefeuille */
.button.warning {
    background: #f59e0b;
    color: white;
    border: 1px solid #d97706;
}

.button.warning:hover {
    background: #d97706;
}

.button.outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
}

.button.outline:hover {
    background: var(--gray-50);
}