/* CompanyMemberSimpleCard styles */

.company-member-card-container {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
}

.company-member-card-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Augmenter le z-index quand le menu est ouvert */
.company-member-card-container:has(.action-menu-dropdown.active) {
    z-index: 200;
}

.company-member-card {
    width: 100%;
    height: 100%;
}

.cursor-pointer {
    cursor: pointer;
}