.whatsapp_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99999;
}

.whatsapp_icon {
    background-color: #8d131300;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.whatsapp_icon img {
    width: 50px;
}

.badge {
    margin-left: 10px;
    color: rgb(0, 0, 0) !important;
    font-weight: bold;
    opacity: 0;
    font-size: 15px !important;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.747);
    /* Slightly dark background */
    border-radius: 8px;
    /* Rounded edges */
    position: absolute;
    left: 50px;
    white-space: nowrap;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(5px);
    /* Apply blur effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Slight shadow for more contrast */
}

.whatsapp_icon:hover .badge {
    opacity: 0.9;
}