.ncf-form {
  max-width: 900px;
  margin: 20px auto;
  font-family: system-ui, Arial;
}

#ncfForm select {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#ncfForm .nice-select {
  display: none !important;
}



.ncf-form h3 {
  margin: 10px 0 16px;
}
.ncf-form label {
  display: block;
  margin: 10px 0 6px;
}
.ncf-form select,
.ncf-form input,
.ncf-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.ncf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ncf-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.ncf-actions button {
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: #ff8a00;
  color: #fff;
}
.ncf-actions button.ncf-prev {
  background: #999;
}
.ncf-progress {
  height: 8px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  margin: 12px 0 20px;
}
.ncf-progress-bar {
  height: 8px;
  background: #ff8a00;
  width: 33%;
  transition: width 0.25s;
}
.ncf-radio label {
  margin-right: 12px;
}
.ncf-radio legend {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.ncf-radio label {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  gap: 5px;
}
.ncf-error {
  color: #b00020;
  font-weight: 600;
}
.ncf-success {
  color: #0a7d29;
  font-weight: 600;
}
.ncf-list {
  list-style: none;
  padding: 0;
}
.ncf-list li {
  padding: 4px 0;
  border-bottom: 1px dashed #eee;
}
@media (max-width: 640px) {
  .ncf-grid {
    grid-template-columns: 1fr;
  }
}
