.vehicles-page {
  padding: 24px 0 40px;
}

.vehicles-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vehicles-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vehicles-search {
  min-width: 220px;
}

.vehicle-form-card .form-label {
  font-weight: 600;
}

.vehicle-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vehicles-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vehicle-name {
  font-weight: 600;
  color: var(--text-main);
}

.vehicle-model {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.vehicle-aliases {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vehicle-alias-chip {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--color-primary-dark);
}

.vehicles-table-wrapper table th {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.vehicles-table-wrapper table td {
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .vehicles-toolbar {
    width: 100%;
    justify-content: flex-start;
  }
}
