.movebooking-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 350px;
    display: none;
    z-index: 9999;
    line-height: 1.4;
    color: #333333;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.movebooking-popup.show {
    display: flex;
    align-items: center;
}

.movebooking-popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.movebooking-popup-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.movebooking-popup-message {
    font-weight: 500;
    margin: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .movebooking-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0 10px;
    }
} 