.wpwa-float {
    position: fixed;
    width: 200px;
    height: 42px;
    bottom: 10px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    padding: 0 15px;
    white-space: nowrap;
}

.wpwa-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.03);
    text-decoration: none;
}

.wpwa-float i {
    font-size: 20px;
}

.wpwa-float span {
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Mobil cihazlar için responsive tasarım */
@media screen and (max-width: 767px) {
    .wpwa-float {
        width: 150px;
        height: 32px;
        bottom: 77px;
        right: 50px;
        font-size: 13px;
        padding: 0 12px;
    }
    
    .wpwa-float i {
        font-size: 16px;
    }
} 
