.ewc-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.ewc-right {
    right: 20px;
}

.ewc-left {
    left: 20px;
}

.ewc-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ewc-button:hover {
    transform: scale(1.05);
}

.ewc-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.ewc-button span {
    font-size: 14px;
    white-space: nowrap;
}

.ewc-mobile-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .ewc-mobile-only {
        display: block;
    }
}