@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.float-button {
    text-decoration: none;
    position: fixed;
    padding: 10px 15px;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background-color: #25D366;
    border-radius: 25px 30px 5px 25px;
    z-index: 100;
    font-family: Arial, sans-serif;
    font-size: 17px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30,30,30,0.3);
    transition: all 0.3s ease-out;
}

.float-button:hover {
    background-color: #128C7E;
    color: #fff;
}

.fa-whatsapp {
    font-size: 22px !important;
}

@keyframes whatsapp-animation {
    from { opacity: 0%; }
    to { opacity: 100% }
}

@media screen and (max-width: 545px) {
    .float-button {
        bottom: 15px;
        right: 15px;
        padding: 10px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    .float-button span {
        display: none;
    }
}