.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-content {
    background-color: #25D366;
    border-radius: 30px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-content:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.profile-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border: 2px solid #fff;
    border-radius: 50%;
}

.fa-whatsapp {
    color: white;
    font-size: 45px !important;
}
