/* ROBERIN Junggae Bosu Calculator v2 — warm paper, brown linework, zero radius */
.junggae-bosu-calculator-container,
.junggae-bosu-calculator-container *,
.junggae-bosu-calculator-container *::before,
.junggae-bosu-calculator-container *::after {
  box-sizing: border-box;
}

.junggae-bosu-calculator-container {
  --junggae-page: #faf2e8;
  --junggae-panel: #fff7e8;
  --junggae-card: #fffdf7;
  --junggae-main-panel-bg: rgba(255, 253, 247, .9);
  --junggae-accent-paper: #e3efd2;
  --junggae-text: #2b2119;
  --junggae-muted: #6b5745;
  --junggae-line: #6b5745;
  --junggae-line-soft: rgba(107, 87, 69, .24);
  --junggae-emphasis: #2b2119;
  --junggae-mustard: #f2e3d3;
  --junggae-mustard-2: #ead2bd;
  --junggae-focus: #d2aa55;
  --junggae-grid-line: rgba(107, 87, 69, .055);
  --junggae-shell-start: #fffaf0;
  --junggae-shadow: rgba(107, 87, 69, .18);
  --junggae-soft-shadow: rgba(107, 87, 69, .16);
  width: min(900px, calc(100% - 24px));
  max-width: 900px;
  margin: 12px auto 18px;
  padding: 0;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background:
    linear-gradient(var(--junggae-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--junggae-grid-line) 1px, transparent 1px),
    linear-gradient(135deg, var(--junggae-shell-start) 0%, var(--junggae-page) 100%);
  background-size: 14px 14px, 14px 14px, auto;
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--junggae-shadow);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
  font-size: calc(1em + 1px);
  line-height: 1.45;
  overflow: visible;
}

body[data-scheme="dark"] .junggae-bosu-calculator-container,
body[data-scheme="inverse"] .junggae-bosu-calculator-container {
  --junggae-page: #201d18;
  --junggae-panel: #201d18;
  --junggae-card: #2b261f;
  --junggae-main-panel-bg: rgba(43, 38, 31, .88);
  --junggae-accent-paper: #304127;
  --junggae-text: #f6ecd9;
  --junggae-muted: #d0bfa5;
  --junggae-line: #e2c98d;
  --junggae-line-soft: rgba(226, 201, 141, .24);
  --junggae-emphasis: #f6ecd9;
  --junggae-mustard: #e4c492;
  --junggae-mustard-2: #3a3024;
  --junggae-focus: #d2aa55;
  --junggae-grid-line: rgba(226, 201, 141, .085);
  --junggae-shell-start: #17130f;
  --junggae-shadow: rgba(0, 0, 0, .34);
  --junggae-soft-shadow: rgba(0, 0, 0, .3);
}

body[data-scheme="dark"] .junggae-bosu-title-band,
body[data-scheme="inverse"] .junggae-bosu-title-band {
  background:
    linear-gradient(90deg, rgba(43, 38, 31, .96), rgba(32, 29, 24, .96) 64%, rgba(226, 201, 141, .16)),
    var(--junggae-card);
}

body[data-scheme="dark"] .junggae-bosu-title-meter,
body[data-scheme="inverse"] .junggae-bosu-title-meter {
  background: #3a3024;
  border-color: rgba(226, 201, 141, .42);
}

@media (prefers-color-scheme: dark) {
  body[data-scheme="auto"] .junggae-bosu-calculator-container {
    --junggae-page: #201d18;
    --junggae-panel: #201d18;
    --junggae-card: #2b261f;
    --junggae-main-panel-bg: rgba(43, 38, 31, .88);
    --junggae-accent-paper: #304127;
    --junggae-text: #f6ecd9;
    --junggae-muted: #d0bfa5;
    --junggae-line: #e2c98d;
    --junggae-line-soft: rgba(226, 201, 141, .24);
    --junggae-emphasis: #f6ecd9;
    --junggae-mustard: #e4c492;
    --junggae-mustard-2: #3a3024;
    --junggae-focus: #d2aa55;
    --junggae-grid-line: rgba(226, 201, 141, .085);
    --junggae-shell-start: #17130f;
    --junggae-shadow: rgba(0, 0, 0, .34);
    --junggae-soft-shadow: rgba(0, 0, 0, .3);
  }

  body[data-scheme="auto"] .junggae-bosu-title-band {
    background:
      linear-gradient(90deg, rgba(43, 38, 31, .96), rgba(32, 29, 24, .96) 64%, rgba(226, 201, 141, .16)),
      var(--junggae-card);
  }

  body[data-scheme="auto"] .junggae-bosu-title-meter {
    background: #3a3024;
    border-color: rgba(226, 201, 141, .42);
  }
}

.junggae-bosu-calculator-container [hidden] {
  display: none !important;
}

.junggae-bosu-title-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px 16px 13px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, .99), rgba(255, 249, 238, .98) 64%, rgba(247, 223, 157, .3)),
    var(--junggae-panel);
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}

.junggae-bosu-title-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.junggae-bosu-title-copy h2 {
  margin: 0;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
}

.junggae-bosu-title-copy p:not(.junggae-bosu-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: normal;
}

.junggae-bosu-title-meter {
  display: grid;
  gap: 3px;
  justify-items: end;
  min-width: 138px;
  padding: 8px 9px;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-accent-paper);
  border: 1px solid rgba(107, 87, 69, .42);
  border-radius: 0 !important;
}

.junggae-bosu-title-meter strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.junggae-bosu-title-meter span {
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.junggae-bosu-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(292px, .86fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border-top: 2px solid var(--junggae-line);
}

.junggae-bosu-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background: var(--junggae-card);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--junggae-soft-shadow);
}

.junggae-bosu-panel--conditions {
  gap: 0;
  background: var(--junggae-main-panel-bg);
}

.junggae-bosu-panel--result {
  gap: 10px;
  background: var(--junggae-main-panel-bg);
}

.junggae-bosu-panel-kicker {
  width: fit-content;
  max-width: 100%;
  color: var(--junggae-emphasis);
  -webkit-text-fill-color: var(--junggae-emphasis);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
}

.junggae-bosu-hero {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  padding: 12px;
  background: var(--junggae-card);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--junggae-soft-shadow);
}

.junggae-bosu-eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 4px 7px;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-accent-paper);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.junggae-bosu-hero h2 {
  margin: 0;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.junggae-bosu-hero p:not(.junggae-bosu-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 14px;
  font-weight: 650;
}

.junggae-bosu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  margin: 0;
}

.junggae-bosu-card {
  min-width: 0;
  padding: 12px;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background: var(--junggae-card);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--junggae-soft-shadow);
}

.junggae-bosu-section-head {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
  padding: 0 0 9px;
  border-bottom: 2px solid var(--junggae-line);
}

.junggae-bosu-section-head h3 {
  margin: 0;
  color: var(--junggae-emphasis);
  -webkit-text-fill-color: var(--junggae-emphasis);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.junggae-bosu-section-head p {
  margin: 0;
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.junggae-bosu-field-grid {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.junggae-bosu-field-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.junggae-bosu-dynamic-fields,
.junggae-bosu-field,
.junggae-bosu-options {
  min-width: 0;
}

.junggae-bosu-field {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
}

.junggae-bosu-field-grid .junggae-bosu-field {
  margin-bottom: 0;
}

.junggae-bosu-field label,
.junggae-bosu-label-text {
  display: block;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.junggae-bosu-field input,
.junggae-bosu-field select {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background-color: var(--junggae-card);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: inset 2px 2px 0 rgba(82, 65, 50, .10);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  outline: none;
}

.junggae-bosu-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, var(--junggae-line) 50%), linear-gradient(135deg, var(--junggae-line) 50%, transparent 50%);
  background-position: calc(100% - 17px) 18px, calc(100% - 11px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.junggae-bosu-field select option {
  color: #2b2119;
  background: #fffdf7;
  font-weight: 800;
}

body[data-scheme="dark"] .junggae-bosu-field select option,
body[data-scheme="inverse"] .junggae-bosu-field select option {
  color: #f6ecd9;
  background: #2b261f;
}

.junggae-bosu-field input::placeholder {
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  opacity: .82;
  font-weight: 850;
}

.junggae-bosu-field input:focus,
.junggae-bosu-field select:focus,
.junggae-bosu-checkrow:focus-within {
  border-color: var(--junggae-focus);
  box-shadow: 0 0 0 3px rgba(210, 170, 85, .24), inset 2px 2px 0 rgba(107, 87, 69, .10);
}

body[data-scheme="dark"] .junggae-bosu-field input:focus,
body[data-scheme="dark"] .junggae-bosu-field select:focus,
body[data-scheme="dark"] .junggae-bosu-checkrow:focus-within,
body[data-scheme="inverse"] .junggae-bosu-field input:focus,
body[data-scheme="inverse"] .junggae-bosu-field select:focus,
body[data-scheme="inverse"] .junggae-bosu-checkrow:focus-within {
  box-shadow: 0 0 0 3px rgba(210, 170, 85, .22), inset 2px 2px 0 rgba(0, 0, 0, .18);
}

.junggae-bosu-field input:disabled,
.junggae-bosu-field select:disabled {
  opacity: .72;
  cursor: not-allowed;
}

.junggae-bosu-money-field,
.junggae-bosu-rate-field {
  position: relative;
  min-width: 0;
}

.junggae-bosu-money-field input,
.junggae-bosu-rate-field input {
  padding-right: 44px;
}

.junggae-bosu-money-field span,
.junggae-bosu-rate-field span {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.junggae-bosu-help {
  margin: 0;
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.junggae-bosu-checkrow {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0 0 10px;
  padding: 9px;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background: var(--junggae-accent-paper);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
}

.junggae-bosu-field .junggae-bosu-checkrow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.junggae-bosu-checkrow--inline {
  margin: 0;
  min-height: 42px;
  cursor: pointer;
}

.junggae-bosu-checkrow input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  background: var(--junggae-card);
  box-shadow: none;
  accent-color: var(--junggae-mustard);
  cursor: pointer;
}

.junggae-bosu-checkrow label,
.junggae-bosu-checkrow span,
.junggae-bosu-checkrow--inline {
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.junggae-bosu-checkrow--inline > span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.junggae-bosu-field--check {
  align-content: start;
}

.junggae-bosu-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
}

.junggae-bosu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 8px 10px;
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--junggae-shadow);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.junggae-bosu-button:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--junggae-shadow);
}

.junggae-bosu-button:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.junggae-bosu-button:focus-visible {
  outline: 3px solid var(--junggae-focus);
  outline-offset: 2px;
}

.junggae-bosu-button--primary {
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: var(--junggae-mustard);
}

.junggae-bosu-button--secondary {
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-accent-paper);
}

.junggae-bosu-button--ghost {
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-card);
}

.junggae-bosu-result-stack {
  display: grid;
  gap: 8px;
}

.junggae-bosu-result-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  min-width: 0;
}

.junggae-bosu-result-pairs .junggae-bosu-result-item:last-child {
  grid-column: 1 / -1;
}

.junggae-bosu-result-item {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background: var(--junggae-panel);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: none;
}

.junggae-bosu-result-item--strong {
  background: var(--junggae-accent-paper);
  border-width: 2px;
}

.junggae-bosu-result-label,
.junggae-bosu-result-item small {
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
}

.junggae-bosu-result-item strong {
  min-width: 0;
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  font-family: "Courier New", Consolas, monospace;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.junggae-bosu-result-item--strong strong {
  color: var(--junggae-emphasis);
  -webkit-text-fill-color: var(--junggae-emphasis);
  font-size: 30px;
}

.junggae-bosu-note {
  margin-top: 10px;
  padding: 10px;
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  background: var(--junggae-card);
  border: 2px dashed var(--junggae-line);
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.junggae-bosu-note.is-warning {
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-mustard-2);
}

.junggae-bosu-basis,
.junggae-bosu-rule-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0;
  background: var(--junggae-panel);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
}

.junggae-bosu-basis div,
.junggae-bosu-rule-strip div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px 9px;
  color: var(--junggae-text);
  -webkit-text-fill-color: currentColor;
  background: transparent;
  border: 0;
  border-right: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: none;
}

.junggae-bosu-basis div:last-child,
.junggae-bosu-rule-strip div:last-child {
  border-right: 0;
}

.junggae-bosu-basis strong,
.junggae-bosu-rule-strip strong {
  color: var(--junggae-emphasis);
  -webkit-text-fill-color: var(--junggae-emphasis);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.junggae-bosu-basis span,
.junggae-bosu-rule-strip span {
  color: var(--junggae-muted);
  -webkit-text-fill-color: var(--junggae-muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.junggae-bosu-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  max-width: min(340px, calc(100vw - 36px));
  padding: 10px 12px;
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: var(--junggae-mustard);
  border: 2px solid var(--junggae-line);
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--junggae-shadow);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.junggae-bosu-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.junggae-bosu-toast.error {
  color: var(--junggae-text);
  -webkit-text-fill-color: var(--junggae-text);
  background: var(--junggae-card);
}

@media (max-width: 820px) {
  .junggae-bosu-calculator-container {
    width: min(100% - 16px, 900px);
    padding: 0;
  }

  .junggae-bosu-title-band,
  .junggae-bosu-workspace {
    grid-template-columns: 1fr;
  }

  .junggae-bosu-title-meter {
    justify-items: start;
    width: 100%;
  }

  .junggae-bosu-grid {
    grid-template-columns: 1fr;
  }

  .junggae-bosu-panel--result {
    order: 2;
  }

  .junggae-bosu-rule-strip {
    order: 3;
  }

  .junggae-bosu-card--result {
    order: 2;
  }

  .junggae-bosu-basis,
  .junggae-bosu-rule-strip {
    grid-template-columns: 1fr;
  }

  .junggae-bosu-basis div,
  .junggae-bosu-rule-strip div {
    border-right: 0;
    border-bottom: 2px solid var(--junggae-line);
  }

  .junggae-bosu-basis div:last-child,
  .junggae-bosu-rule-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .junggae-bosu-calculator-container {
    width: calc(100% - 12px);
    margin: 8px auto 14px;
    padding: 0;
    box-shadow: 3px 3px 0 var(--junggae-shadow);
  }

  .junggae-bosu-title-band,
  .junggae-bosu-workspace {
    padding: 10px;
  }

  .junggae-bosu-title-copy h2 {
    font-size: 19px;
  }

  .junggae-bosu-hero,
  .junggae-bosu-card,
  .junggae-bosu-panel {
    padding: 10px;
  }

  .junggae-bosu-hero h2 {
    font-size: 18px;
  }

  .junggae-bosu-hero p:not(.junggae-bosu-eyebrow) {
    font-size: 13px;
  }

  .junggae-bosu-field-grid--two,
  .junggae-bosu-actions {
    grid-template-columns: 1fr;
  }

  .junggae-bosu-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .junggae-bosu-button {
    min-height: 34px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .junggae-bosu-result-item--strong strong {
    font-size: 29px;
  }

  .junggae-bosu-toast {
    right: 10px;
    bottom: 12px;
    max-width: calc(100vw - 20px);
  }
}

/* Hard gate: ROBERIN tool chrome keeps square paper-box geometry. */
.junggae-bosu-calculator-container,
.junggae-bosu-calculator-container .junggae-bosu-title-band,
.junggae-bosu-calculator-container .junggae-bosu-title-meter,
.junggae-bosu-calculator-container .junggae-bosu-workspace,
.junggae-bosu-calculator-container .junggae-bosu-panel,
.junggae-bosu-calculator-container .junggae-bosu-hero,
.junggae-bosu-calculator-container .junggae-bosu-card,
.junggae-bosu-calculator-container .junggae-bosu-eyebrow,
.junggae-bosu-calculator-container .junggae-bosu-field input,
.junggae-bosu-calculator-container .junggae-bosu-field select,
.junggae-bosu-calculator-container .junggae-bosu-checkrow,
.junggae-bosu-calculator-container .junggae-bosu-button,
.junggae-bosu-calculator-container .junggae-bosu-result-item,
.junggae-bosu-calculator-container .junggae-bosu-note,
.junggae-bosu-calculator-container .junggae-bosu-rule-strip,
.junggae-bosu-calculator-container .junggae-bosu-rule-strip div,
.junggae-bosu-calculator-container .junggae-bosu-basis div,
.junggae-bosu-calculator-container .junggae-bosu-toast {
  border-radius: 0 !important;
}

.junggae-bosu-calculator-container button.junggae-bosu-button,
.entry-content .junggae-bosu-calculator-container button.junggae-bosu-button {
  width: 100% !important;
  min-height: 36px !important;
  padding: 8px 10px !important;
  border: 2px solid var(--junggae-line) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
}
