.jola-floating-phone-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    z-index: 99999;
}

.jola-floating-phone-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.jola-floating-phone-button .jola-phone-icon {
    background-color: #d40075;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.jola-floating-phone-button .jola-phone-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.jola-floating-phone-button .jola-phone-text {
    background-color: rgba(78, 76, 76, 1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .jola-floating-phone-button .jola-phone-text {
        white-space: normal;
        max-width: calc(100vw - 80px);
    }
}
