.vls-card {
  margin-top: 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
}

.vls-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.vls-head p {
  margin: 4px 0 10px;
  color: #6b7280;
  font-size: 0.9rem;
}

.vls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.vls-grid label {
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
  color: #374151;
}

.vls-grid input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.92rem;
}

.vls-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.vls-actions button {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
}

.vls-actions .vls-primary {
  border-color: #0f766e;
  background: #14b8a6;
  color: #052e2b;
  font-weight: 600;
}

.vls-status {
  margin: 8px 0 10px;
  font-size: 0.88rem;
  padding: 7px 9px;
  border-radius: 8px;
}

.vls-status.info {
  background: #eff6ff;
  color: #1e3a8a;
}

.vls-status.warn {
  background: #fffbeb;
  color: #92400e;
}

.vls-status.err {
  background: #fef2f2;
  color: #991b1b;
}

.vls-status.ok {
  background: #ecfdf5;
  color: #065f46;
}

.vls-detail {
  margin-top: 10px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  max-height: 220px;
  overflow: auto;
  font-size: 0.78rem;
}
