
        .tracking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.13);
            border-radius: 8px;
            font-weight: 500; 
            margin-bottom: 15px;
        }
        .tracking-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .tracking-table th {
            background: linear-gradient(135deg, #004374 0%, #0056a3 100%);
            color: #fff;
            padding: 15px 12px !important;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            position: relative;
        }
        .tracking-table th:first-child {
            border-top-left-radius: 8px;
        }
        .tracking-table th:last-child {
            border-top-right-radius: 8px;
        }
        .tracking-table td {
            padding: 12px !important;
            border-bottom: 1px solid #e1e5e9;
            font-size: 14px;
            color: #32373c;
            vertical-align: top;
        }
        .tracking-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .tracking-table tr:hover {
            background-color: #e8f4f8;
            transform: translateY(-1px);
            transition: all 0.2s ease;
        }
        .tracking-table tr:last-child td {
            border-bottom: none;
        }
        .section-title {
            font-size: 24px;
            font-weight: 600;
           
            color: #004374;
            padding-bottom: 10px;
            border-bottom: 3px solid #f32229;
            position: relative;
        }
        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 60px;
            height: 3px;
            background: #004374;
        }
        .status-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .status-processing {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
        .status-transit {
            background: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
        }
        .status-delivered {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .status-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        .bill-number {
            font-weight: 600;
            color: #f32229;
            font-size: 15px;
        }
        .date-time {
            color: #666;
            font-size: 13px;
        }
        .address {
            max-width: 200px;
            word-wrap: break-word;
            line-height: 1.4;
        }
        .weight-info {
            text-align: center;
            font-weight: 600;
        }
        .tracking-header {
            background: linear-gradient(135deg, #004374 0%, #f32229 100%);
            color: white;
            padding: 20px;
            border-radius: 8px 8px 0 0;
            margin-bottom: 0;
        }
        .tracking-header h2 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
        }
        .no-data {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-style: italic;
        }
        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border: 1px solid #f5c6cb;
            border-radius: 6px;
            margin: 15px 0;
        }
        
        /* Mobile Responsive */
             @media screen and (max-width: 480px) {
        
        .tracking-container {
    width: 100%;
    overflow: scroll;
}

}
 