/* CargoFlow Frontend Tracking Styles */
.cargoflow-tracking-wrapper {
    max-width: 820px;
    margin: 40px auto;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
}
.cargoflow-track-form {
    margin: 30px 0;
}
.cargoflow-result {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}
.status-badge {
    padding: 6px 18px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-badge.delivered { background: #dcfce7; color: #166534; }
.status-badge.in_transit, .status-badge.arrived_hub { background: #dbeafe; color: #1e40af; }
.status-badge.out_for_delivery { background: #fef3c7; color: #854d0e; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
