/* Tracking Plugin - Button Right Side */
.tp-container {
    max-width: 550px;
    margin: 0 auto;
    padding: 20px;
}

.tp-form {
    margin: 0;
    padding: 0;
}

.tp-search-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* Input Field - Takes remaining space */
.tp-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #2c3e58;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-family: inherit;
    background: #ffffff;
    color: #2c3e58;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.tp-input:focus {
    border-color: #e8a020;
    box-shadow: 0 0 0 2px rgba(232,160,32,0.1);
}

.tp-input::placeholder {
    color: #94a3b8;
}

/* Button - Fixed width, right side */
.tp-btn {
    padding: 14px 28px;
    background: #e8a020;
    color: #ffffff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.tp-btn:hover {
    background: #d48a00;
    transform: translateY(-1px);
}

/* Result Card */
.tp-result {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.tp-result h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #2c3e58;
    font-weight: 600;
}

.tp-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #e8a02020;
    color: #e8a020;
    margin-bottom: 16px;
}

.tp-details {
    width: 100%;
    border-collapse: collapse;
}

.tp-details th {
    text-align: left;
    padding: 8px 8px 8px 0;
    width: 35%;
    font-weight: 600;
    color: #2c3e58;
    font-size: 13px;
}

.tp-details td {
    padding: 8px 0;
    color: #475569;
    font-size: 13px;
}

.tp-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Mobile Responsive - Stack on mobile */
@media (max-width: 480px) {
    .tp-search-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .tp-input {
        border-radius: 8px;
        width: 100%;
    }
    
    .tp-btn {
        border-radius: 8px;
        width: 100%;
        text-align: center;
    }
    
    .tp-container {
        padding: 15px;
    }
}