/* CTA User Widget Styles */
.ws-zmnd-cta-user-wrapper {
    display: inline-flex;
    align-items: center;
    padding: 8px;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Avatars container */
.ws-zmnd-cta-user-avatars {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

/* Individual avatar */
.ws-zmnd-cta-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ws-zmnd-cta-user-avatar:not(:first-child) {
    margin-left: -15px;
}

.ws-zmnd-cta-user-avatar:hover {
    transform: translateY(-3px);
    z-index: 2;
}

.ws-zmnd-cta-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* CTA Button */
.ws-zmnd-cta-user-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ws-zmnd-cta-user-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    color: #ffffff;
}

/* Button Icon */
.ws-zmnd-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.ws-zmnd-button-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Icon hover effect */
.ws-zmnd-cta-user-button:hover .ws-zmnd-button-icon img {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 767px) {
    .ws-zmnd-cta-user-wrapper {
        padding: 6px;
    }

    .ws-zmnd-cta-user-avatars {
        margin-right: 10px;
    }

    .ws-zmnd-cta-user-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
