
    /* Previous styles remain the same */
    
    .tracking-error {
        background: #fee;
        color: #c00;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        text-align: center;
    }

    .order-details-card {
        background: #ffffff;
        border-radius: 8px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .order-details-card h2 {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #dee2e6;
    }

    .order-status,
    .order-date,
    .order-total {
        margin-bottom: 15px;
    }

    .order-items {
        margin: 25px 0;
    }

    .order-items h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .order-items ul {
        list-style: none;
        padding: 0;
    }

    .order-items li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .order-items li:last-child {
        border-bottom: none;
    }





    .tracking-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.tracking-hero {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-hero h1 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 16px;
    font-weight: 600;
}

.tracking-hero p {
    font-size: 18px;
    color: #495057;
}

.tracking-form-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tracking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #212529;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
}

.tracking-button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tracking-button:hover {
    background: #ffffff;
    color: #000000;
}

.tracking-help {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tracking-help h2 {
    font-size: 24px;
    color: #212529;
    margin-bottom: 16px;
    font-weight: 600;
}

.tracking-help p {
    color: #495057;
    margin-bottom: 24px;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #0056b3;
}

.help-link i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-container {
        margin: 40px auto;
    }

    .tracking-hero h1 {
        font-size: 36px;
    }

    .tracking-form-card {
        padding: 30px 20px;
    }

    .tracking-help {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .tracking-hero h1 {
        font-size: 32px;
    }

    .help-options {
        flex-direction: column;
        gap: 16px;
    }

    .help-link {
        justify-content: center;
    }
}
