.team-manager-icon {
    position: fixed;
    bottom: 135px;
    left: 15px;
    width: 50px;
    height: 50px;
    z-index: 1000; /* Ensures the icon stays on top */
}

.team-manager-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .team-manager-icon-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow around the shape */
        border-radius: 50%; /* Adjust if the image is circular */
        pointer-events: none;
    }

.team-manager-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.messenger-icon {
    position: fixed;
    bottom: 75px;
    left: 15px;
    width: 50px;
    height: 50px;
    z-index: 1000; /* Ensures the icon stays on top */
}

.messenger-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .messenger-icon-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow around the shape */
        border-radius: 50%; /* Adjust if the image is circular */
        pointer-events: none;
    }

.messenger-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.scroll-to-top {
    position: fixed;
    left: 15px;
    bottom: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);
    line-height: 46px;
}

.scroll-to-top:focus, .scroll-to-top:hover {
    color: white;
}

.scroll-to-top:hover {
    background: #343a40;
}

.scroll-to-top i {
    font-weight: 800;
}


.rounded {
    border-radius: 0.25rem !important;
}