/* ==================================================================
   track.css
   Page-specific styling for tickets/track.php only: the result
   card shown after a successful lookup.
   ================================================================== */

.track-result {
    margin-top: 20px;
}

.track-result-card {
    background: #fff;
    border: 1px solid var(--pub-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(15, 23, 41, 0.05);
}

.track-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.track-ticket-number {
    font-weight: 800;
    font-size: 15px;
}

.track-status-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #2563eb;
}

.track-subject {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
}

.track-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--pub-text-muted);
}
