/* Styles pour le bouton d'ajout d'entreprise */
.company-add-button {
    transition: all 0.2s ease-in-out;
}

/* Animation au hover */
.company-add-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-in-out;
}

.company-add-button:active {
    transform: translateY(0);
}
