/* Main Container */
#tp-widget-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 40px;
}

/* Form Section */
/* Form Section */
#tp-tracking-form-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

#tp-tracking-input {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 4px;
    background: #eef1f6;
    color: #333;
    width: 250px;
    font-weight: 600;
}

#tp-tracking-submit {
    padding: 12px 25px;
    background-color: #00bdf2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

#tp-tracking-submit:hover {
    background-color: #00aedfda;
}

#tp-tracking-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Results Container & Timeline */
#tp-results-container {
    flex-grow: 1;
    min-height: 200px;
}

.tp-package-header {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.tp-package-header h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #111;
}

.tp-eta {
    font-size: 13px;
    color: #666;
}

.tp-timeline {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tp-timeline-events {
    list-style: none;
    padding: 20px;
    margin: 0;
    position: relative;
}

/* Vertical Line */
.tp-timeline-events::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50px;
    /* Adjust according to icon center */
    width: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.tp-event {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.tp-event:last-child {
    margin-bottom: 0;
}

.tp-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #00bdf2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #2563eb;
    /* Blue icon color */
    font-size: 24px;
}

.tp-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.tp-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #00bdf2;
}

.tp-date {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 600px) {
    #tp-widget-container {
        flex-direction: column;
    }

    #tp-tracking-form-wrapper {
        flex-direction: column;
        width: 100%;
    }

    #tp-tracking-input {
        width: 100%;
    }

    #tp-tracking-submit {
        width: 100%;
    }
}