/* ═══ BOOKING NOTIFICATIONS ═══ */

.booking-notifications {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.booking-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #e8879a;
    font-family: 'Inter', sans-serif;
    max-width: 340px;
    opacity: 0;
    transform: translateY(-100px);
    animation: toastIn 0.5s ease forwards, toastOut 0.5s ease 4.5s forwards;
}

.booking-toast-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8879a 0%, #d4707f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.booking-toast-content {
    flex: 1;
    min-width: 0;
}

.booking-toast-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.booking-toast-action {
    font-size: 12px;
    color: #888;
}

.booking-toast-time {
    font-size: 11px;
    color: #e8879a;
    font-weight: 600;
    margin-top: 3px;
}

.booking-toast-check {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #64df19 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-toast-check::after {
    content: '';
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-100px); }
}
