.pkhdr-dropdown {
  position: relative;
}

.pkhdr-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: calc(var(--pkhdr-z) + 5);
  width: 320px;
  padding: 12px;
  border: 1px solid var(--pkhdr-border);
  border-radius: var(--pkhdr-radius-lg);
  background: rgba(8, 24, 38, .98);
  color: var(--pkhdr-text);
  box-shadow: var(--pkhdr-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.985);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity var(--pkhdr-ease), visibility var(--pkhdr-ease), transform var(--pkhdr-ease);
}

.pkhdr-dropdown.is-open > .pkhdr-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pkhdr-dropdown-divider {
  height: 1px;
  margin: 10px 0;
  background: var(--pkhdr-border);
}

.pkhdr-panel-head,
.pkhdr-profile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pkhdr-panel-head strong,
.pkhdr-profile-summary strong {
  color: var(--pkhdr-text);
  font-size: .92rem;
}

.pkhdr-panel-head a {
  color: var(--pkhdr-accent);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
}

.pkhdr-profile-summary {
  justify-content: flex-start;
  padding: 4px;
}

.pkhdr-profile-summary > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pkhdr-profile-summary small {
  color: var(--pkhdr-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pkhdr-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 10px;
  color: var(--pkhdr-muted);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 720;
  transition: color var(--pkhdr-ease), background var(--pkhdr-ease);
}

.pkhdr-dropdown-link:hover,
.pkhdr-dropdown-link:focus-visible {
  color: var(--pkhdr-text);
  background: rgba(68,224,207,.08);
}

.pkhdr-dropdown-link--danger {
  color: var(--pkhdr-danger);
}

.pkhdr-empty-state {
  padding: 20px 12px;
  color: var(--pkhdr-soft);
  text-align: center;
  font-size: .82rem;
}

.pkhdr-vehicle-list,
.pkhdr-notification-list {
  display: grid;
  gap: 6px;
}

.pkhdr-vehicle-item,
.pkhdr-notification-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  color: var(--pkhdr-text);
  text-decoration: none;
  transition: background var(--pkhdr-ease);
}

.pkhdr-vehicle-item:hover,
.pkhdr-notification-item:hover {
  background: rgba(68,224,207,.07);
}

.pkhdr-vehicle-item__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--pkhdr-surface-2);
  color: var(--pkhdr-accent);
  font-weight: 900;
}

.pkhdr-vehicle-item > span:last-child,
.pkhdr-notification-item > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pkhdr-vehicle-item strong,
.pkhdr-notification-item strong {
  overflow: hidden;
  color: var(--pkhdr-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .82rem;
}

.pkhdr-vehicle-item small,
.pkhdr-notification-item small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--pkhdr-soft);
  font-size: .72rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pkhdr-notification-item {
  position: relative;
  align-items: flex-start;
}

.pkhdr-notification-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--pkhdr-soft);
}

.pkhdr-notification-item.is-unread .pkhdr-notification-dot {
  background: var(--pkhdr-accent);
  box-shadow: 0 0 0 5px rgba(68,224,207,.08);
}

.pkhdr-profile-panel {
  width: 300px;
}

.pkhdr-notifications-panel {
  width: 360px;
}

.pkhdr-vehicles-panel {
  width: 340px;
}