/* WooKargo Pro - Public Styles */
.wcp-tracking-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wcp-tracking-box h3 { margin: 0 0 16px; font-size: 1rem; }
.wcp-tracking-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.wcp-meta-item { font-size: .85rem; color: #374151; }
.wcp-meta-item strong { color: #111827; }

.wcp-status-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 20px 0;
    padding: 0 10px;
}
.wcp-status-bar::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}
.wcp-status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}
.wcp-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #9ca3af;
    transition: all .3s;
}
.wcp-status-step.active .wcp-step-dot,
.wcp-status-step.done .wcp-step-dot {
    background: #10b981;
    color: #fff;
}
.wcp-step-label { font-size: .72rem; color: #6b7280; }
.wcp-status-step.active .wcp-step-label { color: #10b981; font-weight: 600; }

/* Tracking Page Form */
.wcp-tracking-page { max-width: 600px; margin: 0 auto; }
.wcp-tracking-form { display: flex; gap: 10px; margin-bottom: 24px; }
.wcp-tracking-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color .2s;
}
.wcp-tracking-form input:focus { outline: none; border-color: #2563eb; }
.wcp-tracking-form button {
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.wcp-tracking-form button:hover { background: #1d4ed8; }

/* Account tracking table */
.wcp-account-tracking th, .wcp-account-tracking td { padding: 10px 12px; }
.wcp-account-tracking .wcp-badge { font-size: .7rem; }

@media (max-width: 640px) {
    .wcp-status-bar { display: none; }
    .wcp-tracking-form { flex-direction: column; }
}
