:root {
  --bg: #050714;
  --bg-soft: #0c1020;
  --primary: #4f46e5;
  --accent: #22c55e;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: #1f2937;
  --card-bg: #ffffff;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text-main);
}

.nd-page {
  min-height: 100vh;
  padding: 20px 16px;
}

.nd-shell {
  max-width: 620px;
  margin: 0 auto;
}

.noa-wrap {
  background: #f3f4f6;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.noa-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: white;
}

.noa-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.noa-title {
  font-size: 19px;
  font-weight: 700;
}

.noa-title-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 12px;
  font-weight: 600;
}

.noa-subtext {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.3;
}

.nd-top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nd-top-btn {
  border: none;
  background: rgba(15,23,42,0.18);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
}

.noa-body {
  padding: 12px;
}
.noa-input-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px; /* 👈 add this */
}


#noa-input {
  width: 100%;
  min-height: 92px;
  border: none;
  outline: none;
  resize: vertical;
  padding: 10px 12px;
  background: transparent;
  color: #111827;
  caret-color: #111827;
  -webkit-text-fill-color: #111827;
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.45;
  font-family: inherit;
}

#noa-input::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #6b7280 !important;
}

.noa-phi-warning {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-size: 13px;
  line-height: 1.4;
}

.noa-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.noa-actions-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.noa-main-btn,
.noa-small-btn,
.noa-select {
  height: 36px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.noa-main-btn {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  padding: 0 12px;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}

.noa-small-btn {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  padding: 0 10px;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}

.noa-discipline-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.noa-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;

  height: 38px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;

  padding: 0 32px 0 14px; /* slightly less right padding */
  cursor: pointer;

  width: auto;
  min-width: 0;
  max-width: 100%;
}

.noa-discipline-caret {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-48%);
  pointer-events: none;
  color: #111827;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.noa-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 13px;
  font-weight: 600;
}

.noa-card {
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.noa-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.noa-card-header h4 {
  margin: 0;
  font-size: 15px;
  color: #1f2937;
  line-height: 1.2;
  font-weight: 700;
  flex: 1;
  min-width: 0;
}

.noa-section-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
}

.noa-copy-btn,
.noa-rewrite-btn {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  height: 32px;
  padding: 0 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.noa-card-body {
  margin-top: 6px;
}

.noa-section-preview {
  display: block;
  width: 100%;

  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;

  white-space: normal;
  word-break: break-word;

  margin: 0;
  padding: 0;

  text-align: left !important;
  text-indent: 0 !important;
}

.noa-card-body {
  margin-top: 6px;
  width: 100%;
}

.noa-card-body,
.noa-section-preview,
.noa-section-preview * {
  text-align: left !important;
  text-indent: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.noa-section-preview {
  text-align: left;
}


.noa-tip {
  margin-top: 12px;
  padding: 10px 12px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
  background: #e5e7eb;
  border-radius: 10px;
}

.noa-footer {
  margin-top: 10px;
  font-size: 12px;
}

.noa-footer a {
  color: #4f46e5;
  text-decoration: underline;
}

.noa-phi-highlight {
  background: rgba(239, 68, 68, 0.3);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5) inset;
}

.noa-phi-highlight-nano {
  background: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.6) inset;
}


.noa-patient-row-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.noa-patient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 640px) {
  .noa-actions {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .noa-actions-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .noa-pro-controls,
  .noa-mode-wrapper,
  .noa-hover-help-wrap,
  .noa-discipline-wrap {
    width: 100%;
  }

  .noa-style-mode-wrap .noa-select,
  .noa-discipline-wrap .noa-select,
  .noa-small-btn,
  .noa-main-btn {
    width: 100%;
  }
}

.noa-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 13px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;
}


.noa-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(79, 70, 229, 0.2);
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: noa-spin 0.7s linear infinite;
}

@keyframes noa-spin {
  to {
    transform: rotate(360deg);
  }
}

.noa-main-btn.is-loading {
  opacity: 0.6;
  cursor: not-allowed;
}




.noa-user-menu-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.noa-gear-btn {
  border: none;
  background: rgba(15, 23, 42, 0.18);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.noa-user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: #020617;
  color: #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  z-index: 9999;
}

.noa-user-menu.is-open {
  display: block;
}

.noa-user-menu-head {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1f2937;
}

.noa-user-menu-label {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 2px;
}

.noa-user-menu-email {
  font-size: 13px;
  font-weight: 600;
  word-break: break-all;
}

.noa-menu-btn {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.noa-menu-btn-green {
  background: #22c55e;
  color: #052e16;
}

.noa-menu-btn-red {
  background: #ef4444;
  color: white;
}

.noa-menu-btn-dark {
  background: #334155;
  color: #e5e7eb;
}


.noa-input-wrapper {
  position: relative;
}

#noa-input-highlighter,
#noa-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 128px;
  padding: 12px;
  font: inherit;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
  border-radius: 12px;
}

#noa-input-highlighter {
  position: absolute;
  inset: 0;
  color: transparent;
  background: #fff;
  pointer-events: none;
  z-index: 1;
}

#noa-input {
  position: relative;
  z-index: 2;
  background: transparent;
  color: #222;
  resize: vertical;
}

.noa-phi-mark {
  background: rgba(255, 120, 120, 0.28);
  color: transparent;
  border-radius: 3px;
}

#noa-input {
  background: transparent;
}

.noa-input-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px; /* 👈 add this */
}

.noa-input-wrapper textarea,
.noa-input-wrapper #noa-input-highlighter {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: normal;
  padding: 14px 14px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  tab-size: 4;
  box-sizing: border-box;
  width: 100%;
  min-height: 128px;
}

#noa-input,
#noa-input-highlighter {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  tab-size: 4;
}

.noa-input-wrapper {
  min-height: 128px;
}

#noa-input-highlighter {
  z-index: 1;
  pointer-events: none;
  color: transparent;
  background: transparent;
  overflow: hidden;
}


#noa-input {
  z-index: 2;
  resize: vertical;
  overflow: auto;
  background: transparent;
  color: #111827;
  caret-color: #111827;
  -webkit-text-fill-color: #111827;
  outline: none;
}

#noa-input::placeholder {
  color: #6b7280;
  opacity: 1;
  -webkit-text-fill-color: #6b7280;
}

.noa-phi-highlight {
  background: rgba(255, 0, 0, 0.22);
  border-radius: 3px;
  color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.noa-rewrite-btn {
  min-width: 92px;
  text-align: center;
}

.noa-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.noa-modal {
  width: 100%;
  max-width: 620px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.noa-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.noa-modal-message {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.noa-modal-submessage {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 10px;
}

.noa-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.noa-upgrade-btn {
  flex: 1;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}

.noa-modal-cancel-btn {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.noa-patient-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid #aeb9cb;
  border-radius: 18px;
  background: #d6dde8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.noa-patient-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.noa-patient-row-top {
  flex-wrap: nowrap;
}

.noa-patient-label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
 color: #000000;
  white-space: nowrap;
  min-width: 138px;
}

.noa-patient-select-wrap {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.noa-patient-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 640px) {
  .noa-patient-row-top {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .noa-patient-label {
    min-width: 0;
    white-space: normal;
  }

  .noa-patient-select-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .noa-patient-select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: block;
  }

  .noa-patient-row-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .noa-patient-btn {
    width: 100%;
    justify-content: center;
  }
}

.noa-patient-btn-primary {
  color: #243041;
}

.noa-patient-btn-primary:hover:not(:disabled) {
  background: #dde4ef;
}

.noa-patient-btn-secondary {
  color: #5a6478;
}

.noa-patient-btn-secondary:hover:not(:disabled) {
  background: #e8ecf5;
}

.noa-patient-btn-danger {
  color: #b42318;
  border-color: #e3b5b0;
}

.noa-patient-btn-danger:hover:not(:disabled) {
  background: #fdf1f0;
  border-color: #d9a29b;
}

.noa-patient-btn.is-disabled,
.noa-patient-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.noa-patient-btn-icon {
  font-size: 14px;
  line-height: 1;
}

.noa-patient-disabled {
  font-size: 14px;
  color: #6b7280;
}
.noa-patient-btn-danger {
  background: transparent;
  color: #b42318;
  border: 1px solid #e3b5b0;
}

.noa-patient-btn-danger:hover:not(:disabled) {
  background: #fdf1f0;
  border-color: #d9a29b;
}

.noa-patient-btn.is-disabled,
.noa-patient-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}


.noa-patient-dropdown-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.noa-patient-dropdown-trigger {
  width: 100%;
  min-height: 42px;
  border: 1.5px solid #bfc7d5;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.noa-patient-dropdown-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.noa-patient-dropdown-caret {
  flex-shrink: 0;
  color: #6b7280;
}

.noa-patient-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid #d7dce5;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  padding: 8px;
}

.noa-patient-dropdown-search-wrap {
  padding: 4px 4px 8px;
}

.noa-patient-search {
  width: 100%;
  height: 38px;
  border: 1px solid #d7dce5;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
}

.noa-patient-dropdown-list {
  max-height: 240px;
  overflow-y: auto;
}

.noa-patient-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 4px;
}

.noa-patient-dropdown-item:hover {
  background: #f3f5f9;
}

.noa-patient-dropdown-item.is-active {
  background: rgba(79, 70, 229, 0.10);
}

.noa-patient-dropdown-select {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
}

.noa-patient-dropdown-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.noa-patient-dropdown-delete {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 999px;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.noa-patient-dropdown-delete:hover {
  background: #fee2e2;
  color: #dc2626;
}

.noa-patient-dropdown-item-clear {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 12px;
  color: #6b7280;
}

.noa-patient-dropdown-item-clear:hover {
  background: #f3f5f9;
}

.noa-patient-dropdown-empty {
  padding: 12px;
  font-size: 14px;
  color: #6b7280;
}

.noa-hover-help-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.noa-mode-wrapper {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.noa-hover-help {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  width: 260px;
  background: linear-gradient(180deg, #141a36 0%, #0d132b 100%);
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 14px 13px;
  box-shadow:
    0 24px 50px rgba(2, 6, 23, 0.38),
    0 8px 20px rgba(2, 6, 23, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 1200;
  text-align: left;
}

.noa-hover-help::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #141a36;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.noa-hover-help-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #ffffff;
}

.noa-hover-help-text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}

.noa-hover-help-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.90);
}

.noa-hover-help-wrap:hover .noa-hover-help,
.noa-hover-help-wrap:focus-within .noa-hover-help,
.noa-hover-help-wrap:focus .noa-hover-help {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.noa-hover-help-wrap .noa-select {
  position: relative;
  z-index: 2;
}

.noa-hover-help-mode {
  width: 275px;
}

.noa-hover-help-discipline {
  width: 300px;
}



.noa-body,
.noa-actions,
.noa-actions-right {
  overflow: visible;
}

.noa-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}

.noa-actions-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}

.noa-pro-controls {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.noa-mode-wrapper {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.noa-hover-help-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.noa-discipline-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}


.noa-discipline-wrap .noa-select {
  width: auto;
  min-width: 150px;
  max-width: 170px;
  padding: 0 28px 0 12px;
}

#noa-output {
  width: 100%;
}

.noa-card,
.noa-tip,
.noa-footer {
  width: 100%;
}

.noa-body,
.noa-actions,
.noa-actions-right {
  overflow: visible;
}

.noa-style-mode-wrap .noa-select {
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding: 0 24px 0 10px;
  font-size: 12px;
}

.noa-discipline-wrap .noa-select,
.noa-style-mode-wrap .noa-select {
  width: auto;
  min-width: 0;
}