.manager-card {
    display: flex;
    background-color: #FFFFFF;
    border: 1px solid #DFE4EC;
    padding: 16px;
    border-radius: 16px;
    gap: 16px;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-400) var(--sds-size-depth-0) var(--sds-color-black-100);
}

.manager-avatar-block {
    flex-shrink: 0;
    margin-bottom: 15px;
}

.manager-avatar {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background-color: #ccc;
}

.manager-content {
    flex-grow: 1;
}

.manager-details {
    margin-bottom: 16px;
}

.manager-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1D2430;
}

.manager-role {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #707B8B;
}

.manager-buttons {
    display: flex;
    gap: 16px;
}

.manager-contact-btn {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #F5F7FA;
    border: 1px solid #DFE4EC;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #1D2430;
	cursor:pointer;
	transition:0.2s all;
	font-feature-settings: "liga" 0;
}

a.manager-contact-btn.phone-number:before {
    content: '';
    width: 17px;
    height: 16px;
    background-image: url("../images/phone_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.manager-contact-btn:hover {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.manager-contact-btn:focus {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.manager-contact-btn:active {
    background-color: rgba(235, 237, 240, 1);
    color: rgba(29, 36, 48, 1);
    border: solid 1px darkgray;
}

.manager-contact-btn-icon, .manager-call-btn-icon {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.manager-contact-btn-icon {
    background-image: url('../images/phone_icon.svg');
}

.manager-call-btn-icon {
    background-image: url('../images/whatsapp_white_icon.svg');
}

.manager-call-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    padding: 12px;
    background-color: #2DA736;
    color: #fff;
    border: none;
}

.manager-call-btn:hover {
    background-color: #25912E !important;
}

.manager-call-btn:focus {
    background-color: #25912E !important;
    transform: scale(0.98) !important;
}

.manager-call-btn:active {
    background-color: #25912E !important;
    transform: scale(0.98) !important;
}

.manager-right-buttons {
    display: flex;
    text-align: right;
    justify-content: space-between;
    flex-direction: column;
}

.manager-languages {
    display: flex;
    gap: 8px;
}

.manager-languages div {
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
    color: #1D2430;
    height: 24px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

/* For mobile screens */
@media (max-width: 768px) {
    .manager-avatar {
        width: 48px;
        height: 48px;
    }
    
    .manager-contact-btn {
        padding: 14px 16px;
        height: 44px;
    }
    
    .manager-call-btn {
        width: 44px;
        height: 44px;
        padding: 14px;
    }
}

a.product-whatsapp-btn {
    background: #2da736 !important;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #F5F7FA;
    border: 1px solid #3ea639;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #1D2430;
    cursor: pointer;
    transition: 0.2s all;
    max-width: 40px;
}

a.product-whatsapp-btn svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-height: 16px;
    fill: white;
}