#nfhotel-basket-reminder {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px;
    z-index: 9999;
    max-width: 350px;
    padding: 15px;
    display: flex;
    gap: 15px;
    transform: translateY(0px);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
}

#nfhotel-basket-reminder-close {
    position: absolute;
    top: 10px;
    left: -35px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1em;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#nfhotel-basket-reminder-book {
    background: #023578;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

/* Media query dla mobilnych urządzeń */
@media (max-width: 768px) {
    #nfhotel-basket-reminder {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        top: auto;
        max-width: none;
        transform: translateY(100px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    #nfhotel-basket-reminder-close {
        position: fixed;
        bottom: 186px;
        left: 20px;
        right: auto;
        top: auto;
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    #nfhotel-basket-reminder.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    #nfhotel-basket-reminder-close.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}
