/* Enhanced Tracking Features */

/* Status badge animations */
.status-badge {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Progress bar */
#shipment-progress-bar {
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Map container */
#tracking-map {
    background: #0f172a;
    border: 1px solid #1e293b;
}

/* Loading state */
.tracking-loading {
    position: relative;
}

.tracking-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
