.profile_div {
    position: fixed;
    padding: 0 20% 10% 0;
    width: 10%;
    bottom: 2%;
    right: 0%;
    cursor: pointer;
    z-index: 1; /* Adjust the z-index as needed */
}
.imgProfile {
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 #00000096;
    border-radius: 50%;
    width: 200%;
}
.floating-iframe {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 370px;
    height: 417px;
    border: none;
    display: none;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 #00000096;
}
@media only screen and (min-width: 600px) and (max-width: 900px) {
    .profile_div {
        position: fixed;
        padding: 0 15% 10% 0;
        width: 6%;
        bottom: 2%;
        right: 0%;
        cursor: pointer;
        z-index: 1; /* Adjust the z-index as needed */
    }
    .imgProfile {
        box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 #00000096;
        border-radius: 50%;
        width: 150%;
    }
}
@media only screen and (min-width: 900px) {
    .profile_div {
        position: fixed;
        padding: 0 2% 2% 0;
        width: 7%;
        bottom: 2%;
        right: 0%;
        cursor: pointer;
        z-index: 1; /* Adjust the z-index as needed */
    }
    .imgProfile {
        box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 #00000096;
        border-radius: 50%;
        width: 70%;
    }
}

@media only screen and (max-width: 530px) {
    .floating-iframe {
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100vw;
        height: 100vh;
        border: none;
        display: none;
        z-index: 1;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 #00000096;
    }
}

.pulse {
    animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.message {
    position: absolute;
    text-align: center;
    width: auto; 
    max-width: 10rem; 
    height: auto;
    max-height: 6rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFC72C;
    color: black;
    padding: 6px 6px;
    border-radius: 20px;
    display: none;
    z-index: 2;
    animation: pop-animation 0.5s ease-in-out;
    overflow: hidden; /* Ensure text doesn't overflow */
    font-size: min(max(0.4rem, 1vw), 0.6rem); /* Adjust font size responsively */
}

@keyframes pop-animation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}