
.callback-button {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.callback-button:hover {
    transform: scale(1.1);
}

.callback-right {
    right: 20px;
}

.callback-left {
    left: 20px;
}

.callback-button svg {
    width: 30px;
    height: 30px;
}

/* Styl dla etykiety */
.callback-z-etykieta {
    width: auto;
    min-width: 60px;
    border-radius: 30px;
    padding: 0 20px;
}

.callback-etykieta {
    color: #FFFFFF;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    font-size: 14px;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .callback-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .callback-right {
        right: 15px;
    }
    
    .callback-left {
        left: 15px;
    }
    
    .callback-button svg {
        width: 25px;
        height: 25px;
    }
    
    .callback-z-etykieta {
        padding: 0 15px;
    }
    
    .callback-etykieta {
        font-size: 12px;
        margin-left: 5px;
    }
}