/* Form Styles */
.awb_Form {
    display: flex;
    max-width: 100vw;
    background-color: #ff5e14;
    justify-content: center;
    padding: 10px;
    gap: 5px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 600px) {
    .awb_Form {
        max-width: 50vw;
        margin: 0 auto 30px auto;
    }
}

.submit-button {
    background-color: white !important;
    color: black !important;
    border-radius: 3px;
    padding: 0 20px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.submit-button:hover {
    opacity: 0.9;
}

/* New Design Styles */
.logi-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.logi-tracking-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.logi-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logi-docket-number {
    font-size: 24px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.logi-current-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.logi-status-delivered {
    background-color: #e6f7e6;
    color: #28ca24;
}

.logi-status-in-transit {
    background-color: #e6f2ff;
    color: #1890ff;
}

.logi-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.logi-status-delivered .logi-status-dot {
    background-color: #28ca24;
}

.logi-status-in-transit .logi-status-dot {
    background-color: #1890ff;
}

.logi-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.logi-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #FE5E15;
    background-color: #fff;
    color: #FE5E15;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logi-download-btn:hover {
    background-color: #FE5E15;
    color: #fff;
}

.logi-main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.logi-shipment-details {
    background-color: #e8f4f8;
    border-radius: 8px;
    padding: 25px;
}

.logi-detail-item {
    margin-bottom: 20px;
}

.logi-detail-item:last-child {
    margin-bottom: 0;
}

.logi-detail-label {
    font-size: 13px;
    color: #7a8a9a;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logi-detail-value {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.logi-tracking-timeline {
    position: relative;
    padding-left: 50px;
}

.logi-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.logi-timeline-item:last-child {
    margin-bottom: 0;
}

.logi-timeline-item:before {
    position: absolute;
    content: "";
    width: 2px;
    left: -25px;
    height: calc(100% + 40px);
    top: 10px;
    background: #28ca24;
}

.logi-timeline-item:last-child:before {
    display: none;
}

.logi-timeline-item:after {
    position: absolute;
    content: "↑";
    font-size: 14px;
    width: 30px;
    height: 30px;
    left: -40px;
    border-radius: 50%;
    color: #28ca24;
    text-align: center;
    line-height: 18px;
    top: 0;
    z-index: 1;
    background: #fff;
    border: 2px solid #28ca24;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logi-timeline-item:last-child:after {
    content: "✓";
    background: #28ca24;
    color: #fff;
}

.logi-timeline-content {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logi-timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.logi-timeline-date {
    font-size: 14px;
    color: #7a8a9a;
}

/* CTA Section */
.logi-cta-section {
    margin-top: 50px;
    background: linear-gradient(135deg, #2c5f7c 0%, #4a90b8 100%);
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.logi-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logi-cta-item {
    text-align: left;
}

.logi-cta-title {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.2;
}

.logi-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.5;
}

.logi-cta-button {
    display: inline-block;
    background-color: #fff;
    color: #FE5E15;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.logi-cta-button:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logi-tracking-container {
        padding: 20px;
    }

    .logi-header-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .logi-docket-number {
        font-size: 20px;
    }

    .logi-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logi-tracking-timeline {
        padding-left: 30px;
    }

    .logi-timeline-item {
        margin-bottom: 30px;
    }

    .logi-timeline-item:before {
        left: -30px;
        height: calc(100% + 30px);
        top: 35px;
    }

    .logi-timeline-item:after {
        left: -39px;
    }

    .logi-cta-section {
        padding: 40px 25px;
    }

    .logi-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .logi-cta-item {
        text-align: center;
    }

    .logi-cta-title {
        font-size: 28px;
    }

    .logi-cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logi-download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .logi-download-btn {
        width: 100%;
        justify-content: center;
    }
}