/* Live Activity Delivery Toast Styles */
.live-delivery-toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1080;
    pointer-events: none;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.live-delivery-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem 0.85rem 1rem;
    background: #ffffff;
    color: #1e293b;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.8);
    pointer-events: auto;
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 420px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.live-delivery-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.live-delivery-toast.is-hiding {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
}

/* Icon style matching user screenshot */
.live-toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.live-toast-content {
    flex-grow: 1;
    color: #334155;
}

.live-toast-phone {
    font-weight: 700;
    color: #2563eb;
}

.live-toast-network {
    font-weight: 700;
}

.live-toast-network.net-telecel {
    color: #0284c7;
}

.live-toast-network.net-mtn {
    color: #d97706;
}

.live-toast-network.net-at {
    color: #e11d48;
}

.live-toast-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50%;
    margin-left: 0.25rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-toast-close:hover {
    color: #475569;
    background-color: #f1f5f9;
}

/* Responsive adjust for mobile */
@media (max-width: 640px) {
    .live-delivery-toast-container {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
    .live-delivery-toast {
        max-width: 100%;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}
