/* ── Oboz Global — exact site match ── */
:root {
    --lt-navy:   #0D1B3E;
    --lt-navy2:  #152750;
    --lt-border: #d1d5db;
    --lt-bg:     #f9fafb;
    --lt-text:   #111827;
    --lt-muted:  #6b7280;
    --lt-radius: 10px;
}

/* Reset within shortcode scope */
.lt-wrap *, .lt-wrap *::before, .lt-wrap *::after { box-sizing: border-box; }
.lt-wrap {
    max-width: 720px;
    margin: 2rem auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--lt-text);
}

/* ── Card shell ── */
.lt-card {
    background: #ffffff;
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-radius);
    padding: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Search card — customer page ── */
.lt-search-card {
    background: #ffffff;
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-radius);
    padding: 2.25rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.lt-search-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--lt-navy);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lt-search-sub {
    font-size: 14px;
    color: var(--lt-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.lt-search-row { display: flex; gap: 10px; }
.lt-track-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--lt-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: monospace;
    color: var(--lt-navy);
    font-weight: 700;
    background: #fff;
    letter-spacing: 0.06em;
    transition: border-color 0.15s;
}
.lt-track-input:focus { outline: none; border-color: var(--lt-navy); box-shadow: 0 0 0 3px rgba(13,27,62,0.08); }

/* ── Result — summary card ── */
.lt-summary-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--lt-border); }
.lt-summary-tid-label { font-size: 10px; font-weight: 700; color: var(--lt-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.lt-summary-tid { font-family: monospace; font-size: 18px; font-weight: 800; color: var(--lt-navy); letter-spacing: 0.04em; }
.lt-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.lt-summary-item label { display: block; font-size: 10px; font-weight: 700; color: var(--lt-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.lt-summary-item span { font-size: 14px; font-weight: 500; color: var(--lt-text); }
.lt-card-title { font-size: 13px; font-weight: 700; color: var(--lt-navy); margin: 0 0 1.25rem; text-transform: uppercase; letter-spacing: 0.07em; }

/* ── Status badges — match site's blue palette ── */
.lt-badge { display: inline-flex; align-items: center; padding: 5px 13px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.03em; white-space: nowrap; }
.lt-badge-pending   { background: #fef3e2; color: #92520b; }
.lt-badge-pickup    { background: #ede9fe; color: #5b21b6; }
.lt-badge-transit   { background: #dbeafe; color: #1e40af; }
.lt-badge-delayed   { background: #fee2e2; color: #991b1b; }
.lt-badge-delivered { background: #dcfce7; color: #166534; }

/* ── Timeline ── */
.lt-timeline { list-style: none; padding: 0; margin: 0; }
.lt-timeline li { display: flex; gap: 14px; padding-bottom: 1.5rem; position: relative; }
.lt-timeline li:not(:last-child)::before { content: ''; position: absolute; left: 11px; top: 28px; width: 1px; height: calc(100% - 16px); background: var(--lt-border); }
.lt-tl-dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--lt-border); background: var(--lt-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lt-tl-dot svg { width: 10px; height: 10px; stroke: #9ca3af; fill: none; stroke-width: 2; }
.lt-tl-dot.active { background: var(--lt-navy); border-color: var(--lt-navy); }
.lt-tl-dot.active svg { stroke: #fff; }
.lt-tl-title { font-size: 14px; font-weight: 600; color: var(--lt-navy); line-height: 1.3; }
.lt-tl-meta { font-size: 12px; color: var(--lt-muted); margin-top: 4px; line-height: 1.5; }
.lt-tl-note { font-size: 12px; color: #4b5563; margin-top: 3px; font-style: italic; }

/* ── Driver form ── */
.lt-driver-wrap .lt-card { max-width: 540px; }
.lt-field { margin-bottom: 1.15rem; }
.lt-field label { display: block; font-size: 12px; font-weight: 700; color: var(--lt-navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.lt-hint { font-size: 11px; color: var(--lt-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.lt-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lt-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--lt-text);
    background: #fff;
    font-family: inherit;
    transition: border-color 0.15s;
}
.lt-input:focus { outline: none; border-color: var(--lt-navy); box-shadow: 0 0 0 3px rgba(13,27,62,0.08); }
select.lt-input { cursor: pointer; }

/* ── Buttons — match site's Book A Truck style ── */
.lt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 24px;
    border: 2px solid var(--lt-navy);
    border-radius: 50px;
    background: var(--lt-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.lt-btn:hover { background: var(--lt-navy2); border-color: var(--lt-navy2); color: #fff; }
.lt-btn-outline { background: transparent; color: var(--lt-navy); }
.lt-btn-outline:hover { background: var(--lt-navy); color: #fff; }
.lt-btn-sm { padding: 8px 16px; font-size: 11px; border-radius: 50px; }

/* ── Alerts ── */
.lt-alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 1rem; font-weight: 500; }
.lt-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.lt-alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.lt-divider { height: 1px; background: var(--lt-border); margin: 1.5rem 0; }
