#vehicle-status-pill {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 12px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  max-width: min(88vw, 370px);
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(124, 237, 167, 0.35);
  background: linear-gradient(135deg, rgba(8, 25, 18, 0.9), rgba(9, 40, 27, 0.9));
  color: #e6ffee;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#vehicle-status-pill.show {
  transform: translateY(0);
  opacity: 1;
}

#vehicle-status-pill .vehicle-status-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #59e084, #1f8f50);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
}

#vehicle-status-pill .vehicle-status-icon svg {
  width: 16px;
  height: 16px;
  stroke: #f5fff8;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#vehicle-status-pill .vehicle-status-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#vehicle-status-pill .vehicle-status-text strong {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #d6ffe4;
}

#vehicle-status-pill .vehicle-status-text small {
  margin-top: 2px;
  font-size: 12px;
  color: #f5fff9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 560px) {
  #vehicle-status-pill {
    left: 10px;
    right: 10px;
    max-width: none;
    width: auto;
    min-height: 40px;
    padding: 7px 11px;
  }
}
