.lpvm-card {
  background: #fff;
  border: 1px solid #dcdcde;
  border-radius: 12px;
  margin: 16px 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.lpvm-card-header {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
}
.lpvm-card-header h3 {
  margin: 0;
  font-size: 15px;
}
.lpvm-card-body {
  padding: 16px;
}
.lpvm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.lpvm-table th,
.lpvm-table td {
  vertical-align: top;
}
.lpvm-hint {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e3e3e3;
  color: #555;
  font-size: 12px;
}
.lpvm-inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lpvm-inline-form .regular-text {
  min-width: 180px;
}

.lpvm-vehicle-selector {
  margin-bottom: 16px;
}
.lpvm-selector-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.lpvm-selector-subtitle {
  color: #666;
  font-size: 12px;
}
.lpvm-vehicle-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.lpvm-vehicle-option {
  appearance: none;
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lpvm-vehicle-option.is-selected {
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1 inset;
}
.lpvm-vehicle-option-title {
  font-weight: 600;
}
.lpvm-vehicle-option-meta {
  font-size: 12px;
  color: #666;
}
.latepoint .lpvm-vehicle-option.is-selected {
  border-color: #111;
  box-shadow: 0 0 0 1px #111 inset;
}
