
.lt-timeline-wrapper {
    margin-top: 40px;
}

.lt-timeline-wrapper h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.lt-timeline {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 10px;
    gap: 40px;
    scroll-behavior: smooth;
    position: relative;
}

.lt-timeline-step {
    position: relative;
    text-align: center;
    flex: 0 0 auto;
    min-width: 140px;
}

.lt-circle {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 2;
    transition: background-color 0.3s;
}

.lt-line {
    position: absolute;
    top: 9px;
    left: 100%;
    width: 40px;
    height: 2px;
    background-color: #ccc;
    z-index: 1;
}

.lt-timeline-step.origin .lt-circle {
    background-color: #888;
}
.lt-timeline-step.step .lt-circle {
    background-color: #888;
}
.lt-timeline-step.destination .lt-circle {
    background-color: #444;
}
.lt-timeline-step.current .lt-circle {
    background-color: #0073aa;
    transform: scale(1.3);
}

.lt-label {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.lt-label .lt-current {
    color: #0073aa;
    font-weight: bold;
}

.lt-label .lt-remark {
    font-style: italic;
    margin-top: 4px;
    color: #555;
}

.lt-label .lt-time {
    font-size: 11px;
    color: #888;
}


/* Base Container */



.lt-tracking-wrapper {
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 20px;
}

/* Inner Flex Container */
.lt-tracking-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.lt-tracking-label {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

/* Form Layout */
.lt-tracking-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 16px;
    padding: 20px; /* Add white padding around inputs/buttons */
    gap: 16px; /* Space between input and button */
}



/* INPUT FIELD */
.lt-tracking-form input[type="text"] {
    width: 100%;
    padding: 32px 30px 32px 64px;
    font-size: 22px;
    border: none;
    outline: none;
    border-radius: 12px;
    background: url('data:image/svg+xml;utf8,<svg fill="gray" height="28" viewBox="0 0 24 24" width="28" xmlns="http://www.w3.org/2000/svg"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') no-repeat 24px center;
    background-size: 28px 28px;
    background-color: #fff;
}

/* BUTTON */
.lt-tracking-form button {
    padding: 20px 32px;
    
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    width: 100%;
}


/* DESKTOP VIEW */
@media (min-width: 768px) {
    .lt-tracking-form {
        flex-direction: row;
        align-items: center;
        padding: 10px;
        gap: 0;
    }

    .lt-tracking-label {
        margin-right: 20px;
        width: auto;
    }

    .lt-tracking-form {
        flex-direction: row;
        align-items: center;
        padding-right: 12px; /* padding inside white background */
    }

   .lt-tracking-form input[type="text"] {
        flex: 1;
        margin-right: 12px;
        border-radius: 16px;
    }

     .lt-tracking-form button {
        width: auto;
        border-radius: 12px;
    }
}



       .package-receipt {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.qr-code-container {
    text-align: center;
    margin-bottom: 20px;
}
.qr-code-container img {
    max-width: 150px;
    height: auto;
}
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.info-section {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.label {
    font-weight: 600;
    color: #555;
    flex: 0 0 40%;
    min-width: 100px;
}
.value {
    color: #333;
    flex: 1;
    word-break: break-word;
    text-align: right;
}

/* Responsive styles */
@media (max-width: 600px) {
    .info-container {
        flex-direction: column;
    }
    .info-section {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .row {
        flex-direction: column;
        align-items: flex-start;
    }
    .label, .value {
        flex: none;
        text-align: left;
        width: 100%;
    }
}

  


.lt-timeline-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
}

.lt-timeline-step {
    text-align: center;
    position: relative;
    margin-right: 40px;
    min-width: 120px;
}

.lt-circle {
    width: 20px;
    height: 20px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lt-line {
    width: 100%;
    height: 3px;
    background: #ddd;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.lt-label {
    margin-top: 10px;
    font-size: 14px;
}

.lt-remark {
    font-size: 12px;
    color: #666;
}

.lt-time {
    font-size: 11px;
    color: #aaa;
}

/* Origin */
.lt-timeline-step.origin .lt-circle {
    background-color: #0073aa;
}

/* Destination */
.lt-timeline-step.destination .lt-circle {
    background-color: #444;
}

/* Current (blinking) */
.lt-timeline-step.current .lt-circle {
    background-color: #0073aa;
    animation: lt-blink 1s infinite;
}

/* Delivered (green, no blink) */
.lt-timeline-step.delivered .lt-circle {
    background-color: green;
    animation: none;
}

/* Held (red, no blink) */
.lt-timeline-step.held .lt-circle {
    background-color: red;
    animation: none;
}

/* Blinking keyframe */
@keyframes lt-blink {
    0%, 100% { opacity: 1; transform: scale(1.2); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.lt-current {
    font-weight: normal;
    font-size: 12px;
    color: #444;
    margin-left: 4px;
}












































































</style>





