/* JapanTrak 2.9: równoległe zlecenia w widoku tygodniowym */
.transport-card {
  box-sizing: border-box;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.transport-card--parallel {
  min-width: 0;
  padding: 4px 3px;
  border-left-width: 3px;
}

.transport-card--parallel .parallel-vehicle {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #34332f;
}

.transport-card--parallel .parallel-vehicle svg {
  flex: 0 0 auto;
}

.transport-card--parallel .parallel-vehicle span {
  min-width: 0;
  overflow: hidden;
  color: #34332f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .transport-card--parallel {
    padding: 3px 1px;
  }

  .transport-card--parallel .parallel-vehicle {
    gap: 0;
  }

  .transport-card--parallel .parallel-vehicle span {
    display: none;
  }
}
