/* Compact Retraits queue cards — kept as static CSS so PWA/service-worker
   cannot drop an empty SharedUI scoped bundle and leave cards unstyled. */
.pickup-card {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
    padding: 8px 12px 8px 14px;
    border: 0;
    border-bottom: 1px solid #eef0f3;
    border-left: 3px solid transparent;
    background: #fff;
    color: #111827;
    text-align: left;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.pickup-card:hover {
    background: #f9fafb;
}

.pickup-card:focus-visible {
    outline: 2px solid #0f766e;
    outline-offset: -2px;
}

.pickup-card.is-selected {
    border-left-color: #0f766e;
    background: #f0fdf9;
}

.pickup-card__top {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pickup-card__number {
    min-width: 0;
    overflow: hidden;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pickup-card__badges {
    display: flex;
    flex: none;
    align-items: center;
    gap: 6px;
}

.pickup-card__status {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 5px;
    padding: 1px 8px;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.pickup-card__status > span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: #f59e0b;
}

.pickup-card__status--partial {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
}

.pickup-card__status--partial > span {
    background: #3b82f6;
}

.pickup-card__status--done {
    border-color: #a7f3d0;
    background: #f0fdf9;
    color: #047857;
}

.pickup-card__status--done > span {
    background: #10b981;
}

.pickup-card__client {
    overflow: hidden;
    color: #111827;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pickup-card__bottom {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 1px;
}

.pickup-card__meta-row {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding-bottom: 1px;
}

.pickup-card__meta {
    color: #9ca3af;
    font-size: 11px;
    line-height: 1.3;
}

.pickup-card__dot {
    color: #d1d5db;
}

.pickup-card__tag {
    flex: none;
    padding: 1px 6px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.pickup-card__tag--warn {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.pickup-card__totals {
    flex: none;
    text-align: right;
    line-height: 1.15;
}

.pickup-card__totals > strong {
    display: block;
    color: #0f766e;
    font-size: 14px;
    font-weight: 800;
}

.pickup-card__totals > small {
    display: block;
    margin-top: 1px;
    color: #9ca3af;
    font-size: 10px;
    font-weight: 500;
}

.pickup-card__progress {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 4px;
}

.pickup-card__progress-label {
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 700;
}

.pickup-card__progress-track {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5e7eb;
}

.pickup-card__progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #3b82f6;
}
