.om-no-scroll { overflow: hidden; }

.om-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999999;
}

.om-modal {
  width: min(780px, 96vw);
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 14px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.om-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.om-header h3 { margin: 0 0 10px; }

.om-progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.om-progress-bar {
  height: 100%;
  width: 33%;
  background: #111;
  transition: width 200ms ease;
}

.om-step { display: none; }
.om-step.is-active { display: block; }

.om-row { margin: 12px 0; }
.om-row label { display:block; font-weight: 600; margin-bottom: 6px; }
.om-row input, .om-row select, .om-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.om-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  user-select: none;
}
.om-card input { width: auto; }

.om-checklist label { display:block; margin: 8px 0; }

.om-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.om-next, .om-back, .om-submit {
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.om-submit { width: 100%; }

.om-hint { font-size: 12px; opacity: 0.7; margin-top: 6px; }
.om-note {
  background: #f6f6f6;
  border: 1px dashed #ddd;
  padding: 10px 12px;
  border-radius: 12px;
}

.om-request {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 10px 12px;
  border-radius: 12px;
  margin-top: 8px;
}

.om-status { margin-top: 10px; font-weight: 600; }
.om-hp { position: absolute; left: -9999px; top: -9999px; }
