/* Booking Notification Display v1.5.0 */

#booking-notifications {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background: linear-gradient(90deg, rgba(19,94,150,.96), rgba(0,0,0,.9));
    color: #fff;
    padding: 10px 44px 10px 16px;
    text-align: center;
    font-size: 15px;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.4;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity .4s ease, transform .4s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#booking-notifications.bnd-visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-notification {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

.bnd-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.bnd-msg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bnd-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.bnd-close:hover,
.bnd-close:focus {
    background: rgba(255,255,255,.15);
    color: #fff;
    outline: none;
}

/* Mobile */
@media (max-width: 640px) {
    #booking-notifications {
        font-size: 13px;
        padding: 8px 40px 8px 12px;
    }
    .bnd-msg {
        white-space: normal;
        text-align: left;
    }
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
    #booking-notifications {
        transition: opacity .2s ease;
        transform: none;
    }
}
