:root {
  color-scheme: light;
  --bg: #eef3f7;
  --surface: #ffffff;
  --surface-quiet: #f7fafc;
  --ink: #0a2146;
  --muted: #627086;
  --border: #d8e0ea;
  --border-strong: #bdc9d7;
  --teal: #0798a5;
  --teal-dark: #057884;
  --coral: #f15f67;
  --coral-soft: #ffe6e7;
  --amber: #e2a42d;
  --amber-soft: #fff3cf;
  --green: #17a36a;
  --green-soft: #dcf7ed;
  --shadow: 0 10px 28px rgba(10, 33, 70, 0.09);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid #b8dfe4;
  background: #e8fbfd;
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand h1,
.panel h2,
.panel h3,
.brand p,
.panel p {
  margin: 0;
}

.brand h1 {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand p,
.panel-heading p,
.model-controls p,
.recording-copy span,
.soft-note {
  color: var(--muted);
}

.brand p {
  font-size: 12px;
  margin-top: 2px;
}

.top-actions,
.practice-actions,
.settings-row,
.reader-toolbar {
  display: flex;
  align-items: center;
}

.top-actions {
  gap: 10px;
}

.session-bar {
  min-height: 54px;
  border-bottom: 1px solid var(--border);
  background: #f9fbfd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 24px;
}

.user-switcher {
  display: flex;
  align-items: end;
  gap: 8px;
  min-width: 0;
}

.user-switcher label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  display: grid;
  gap: 4px;
}

.user-switcher select,
.user-switcher input {
  height: 34px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 10px;
  min-width: 0;
  font-size: 13px;
}

.user-switcher select {
  min-width: 148px;
}

.user-switcher input {
  width: 170px;
}

.resume-info {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.resume-info span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

#save-status {
  color: #314258;
}

#device-url {
  color: var(--teal-dark);
  overflow-wrap: anywhere;
}

.workspace {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 0.88fr) minmax(360px, 0.82fr);
  gap: 12px;
  padding: 12px;
  min-height: 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-heading {
  min-height: 62px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.panel-heading h2 {
  font-size: 16px;
  line-height: 1.2;
}

.panel-heading p {
  font-size: 12px;
  margin-top: 4px;
}

.status-pill {
  border: 1px solid #c9d5e2;
  background: #f4f8fb;
  color: #42536a;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.status-pill.good {
  border-color: #b8e4d3;
  background: var(--green-soft);
  color: #06734a;
}

.status-pill.warning {
  border-color: #f2c6a4;
  background: #fff1e8;
  color: #9b4a12;
}

.primary-button,
.ghost-button,
.icon-button,
.play-button {
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease;
}

.primary-button {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.primary-button:hover,
.play-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(7, 152, 165, 0.22);
}

.ghost-button:hover,
.icon-button:hover {
  border-color: #95a8ba;
  background: #f7fbff;
}

.ghost-button.compact {
  min-height: 34px;
  padding: 0 10px;
}

.file-control {
  position: relative;
  overflow: hidden;
}

.file-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.icon-button {
  width: 38px;
  padding: 0;
  flex: 0 0 38px;
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.reader-toolbar {
  height: 54px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
  background: var(--surface-quiet);
}

.page-stepper {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0 9px;
  background: #fff;
  font-size: 13px;
  color: var(--muted);
}

.page-stepper input {
  width: 58px;
  border: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  outline: none;
}

.toolbar-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 0 4px;
}

.zoom-label {
  min-width: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.pdf-stage {
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: #dfe6ee;
  padding: 14px;
  position: relative;
}

#pdf-canvas {
  display: block;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 3px 18px rgba(10, 33, 70, 0.2);
}

.empty-state {
  position: absolute;
  inset: 24px;
  border: 1px dashed #9eb0c1;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

.empty-state[hidden] {
  display: none !important;
}

.empty-state strong {
  color: var(--ink);
}

.empty-state .lucide {
  width: 38px;
  height: 38px;
  color: var(--teal-dark);
}

.reading-focus {
  position: absolute;
  inset: 14px;
  z-index: 4;
  border: 1px solid #8fd8df;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(10, 33, 70, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reading-focus[hidden] {
  display: none !important;
}

.reading-focus-header {
  min-height: 58px;
  border-bottom: 1px solid var(--border);
  background: #f0fcfd;
  padding: 10px 12px 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.reading-focus-header div {
  display: grid;
  gap: 3px;
}

.reading-focus-header span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.reading-focus-header strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.reading-focus-text {
  flex: 1;
  overflow: auto;
  padding: 26px 28px 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

.reading-token {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 26px;
  margin: 0 2px 12px;
  padding: 4px 6px 5px;
  border-radius: 7px;
  vertical-align: bottom;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.reading-word {
  font-size: 28px;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0;
}

.reading-ipa {
  margin-top: 5px;
  color: #66758a;
  font-family:
    "Times New Roman", "Noto Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.05;
  white-space: nowrap;
}

.reading-token.finished .reading-word {
  color: #7b8798;
}

.reading-token.finished .reading-ipa {
  color: #9aa6b5;
}

.reading-token.active {
  background: var(--amber-soft);
  box-shadow: inset 0 0 0 2px rgba(226, 164, 45, 0.55);
}

.reading-token.active .reading-word {
  color: #081f44;
  font-weight: 700;
}

.reading-token.active .reading-ipa {
  color: #805607;
  font-weight: 800;
}

.reading-punctuation {
  display: inline-block;
  margin: 0 5px 16px 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  vertical-align: bottom;
}

.reading-break {
  display: block;
  height: 13px;
}

.reading-focus-hidden-note {
  flex: 1;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.reading-focus-hidden-note:not([hidden]) {
  display: grid;
}

.reading-focus-translation {
  border-top: 1px solid var(--border);
  background: #fffaf0;
  padding: 13px 18px 15px;
}

.reading-focus-translation span {
  display: block;
  color: #8a5b08;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
}

.reading-focus-translation p {
  margin: 0;
  color: #2c3140;
  font-family:
    "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  max-height: 122px;
  overflow: auto;
}

.practice-panel,
.report-panel {
  padding-bottom: 14px;
}

.passage-list {
  padding: 14px 16px 0;
  display: grid;
  gap: 8px;
  max-height: 214px;
  overflow: auto;
}

.passage-card {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  text-align: left;
  padding: 12px;
  display: grid;
  gap: 6px;
  color: var(--ink);
}

.passage-card:hover,
.passage-card.active {
  border-color: var(--teal);
  background: #eefdff;
}

.passage-card strong {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.passage-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.passage-card.full-text {
  border-color: #89d6df;
  background: #f1fcfd;
}

.display-controls {
  margin: 12px 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.toggle-control {
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: #314258;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  user-select: none;
}

.toggle-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-switch {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #c7d2df;
  position: relative;
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(10, 33, 70, 0.2);
  transition: transform 160ms ease;
}

.toggle-control input:checked + .toggle-switch {
  background: var(--teal);
}

.toggle-control input:checked + .toggle-switch::after {
  transform: translateX(14px);
}

.toggle-control input:focus-visible + .toggle-switch {
  box-shadow: 0 0 0 3px rgba(7, 152, 165, 0.18);
}

body.hide-english .english-display,
body.hide-japanese .japanese-display,
body.hide-english .passage-card span {
  display: none !important;
}

.ocr-editor {
  margin: 12px 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-quiet);
  overflow: hidden;
}

.ocr-editor summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
}

.ocr-editor summary::marker {
  color: var(--teal-dark);
}

.ocr-editor summary span {
  font-size: 13px;
  font-weight: 900;
  color: #314258;
}

.ocr-editor summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.ocr-editor textarea {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  min-height: 128px;
  background: #fff;
}

.ocr-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 12px;
}

body.hide-english:not(.hide-japanese) .reading-focus-translation {
  flex: 1;
  border-top: 0;
  display: flex;
  flex-direction: column;
}

body.hide-english:not(.hide-japanese) .reading-focus-translation p {
  flex: 1;
  max-height: none;
  font-size: 20px;
}

.field-label {
  display: block;
  margin: 15px 16px 7px;
  font-size: 12px;
  font-weight: 800;
  color: #314258;
  letter-spacing: 0;
}

textarea {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  resize: vertical;
  min-height: 94px;
  padding: 12px;
  color: var(--ink);
  outline: none;
  line-height: 1.52;
  background: #fff;
}

textarea:focus,
select:focus,
input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(7, 152, 165, 0.14);
}

.translation-panel {
  margin: 10px 16px 0;
  border: 1px solid #eed59f;
  border-radius: var(--radius);
  background: #fffaf0;
  padding: 12px 13px;
}

.translation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}

.translation-header span {
  color: #8a5b08;
  font-size: 12px;
  font-weight: 900;
}

.translation-header small {
  color: #806a3c;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.translation-panel p {
  margin: 0;
  color: #2c3140;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  white-space: pre-wrap;
}

.model-controls {
  margin: 15px 16px 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface-quiet);
}

.model-controls h3,
.report-section h3,
.score-block h3 {
  font-size: 15px;
  line-height: 1.3;
}

.model-controls p {
  font-size: 12px;
  margin-top: 4px;
}

.play-button {
  border-color: var(--teal);
  background: #e8fbfd;
  color: var(--teal-dark);
  min-width: 142px;
}

.settings-row {
  gap: 10px;
  padding: 12px 16px 0;
}

.settings-row label {
  flex: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  gap: 6px;
}

select {
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 10px;
  min-width: 0;
}

.recording-box {
  margin: 15px 16px 0;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 10px 12px;
  align-items: center;
}

.record-button {
  grid-row: 1 / span 2;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(241, 95, 103, 0.32);
}

.record-button .lucide {
  width: 28px;
  height: 28px;
}

.record-button.recording {
  animation: pulse 1200ms ease-in-out infinite;
  background: #d93648;
}

.record-button:disabled {
  cursor: not-allowed;
  background: #a9b4c1;
  box-shadow: none;
  opacity: 0.76;
}

.recording-copy {
  display: grid;
  gap: 4px;
}

.recording-copy strong {
  color: var(--coral);
  font-size: 14px;
}

.meter {
  height: 42px;
  border-radius: var(--radius);
  background: #eef3f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
}

.meter span {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: #b9c6d3;
}

.record-button.recording ~ .meter span {
  animation: bar 740ms ease-in-out infinite alternate;
}

.record-button.recording ~ .meter span:nth-child(2) {
  animation-delay: 80ms;
}

.record-button.recording ~ .meter span:nth-child(3) {
  animation-delay: 160ms;
}

.record-button.recording ~ .meter span:nth-child(4) {
  animation-delay: 240ms;
}

.record-button.recording ~ .meter span:nth-child(5) {
  animation-delay: 320ms;
}

.record-button.recording ~ .meter span:nth-child(6) {
  animation-delay: 400ms;
}

.practice-actions {
  gap: 10px;
  padding: 12px 16px 0;
}

.report-panel {
  overflow: auto;
}

.score-block {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 18px;
  border-bottom: 1px solid var(--border);
}

.score-ring {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 54%, transparent 55%),
    conic-gradient(var(--teal) calc(var(--score) * 1%), #e1e8f0 0);
  display: grid;
  place-items: center;
  align-content: center;
}

.score-ring span {
  display: block;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0;
}

.score-ring small {
  color: var(--muted);
  font-weight: 800;
}

.score-block p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.report-section {
  padding: 16px 18px 0;
}

.report-section h3 {
  margin: 0 0 10px;
}

.highlight-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 92px;
  padding: 13px;
  line-height: 1.7;
  background: var(--surface-quiet);
  color: var(--ink);
}

.word {
  display: inline-block;
  padding: 1px 4px;
  margin: 1px 0;
  border-radius: 5px;
}

.word.correct {
  background: transparent;
}

.word.missing,
.word.substitute {
  background: var(--coral-soft);
  color: #9b2631;
}

.word.extra {
  background: var(--amber-soft);
  color: #845c08;
}

.review-list {
  display: grid;
  gap: 8px;
}

.review-row {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(94px, 0.75fr) minmax(0, 1.3fr);
  gap: 8px 12px;
  background: #fff;
  font-size: 13px;
}

.review-row strong {
  color: var(--ink);
}

.review-row span {
  color: var(--muted);
}

.review-row .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 24px;
  padding: 0 8px;
  background: var(--coral-soft);
  color: #9b2631;
  font-weight: 800;
}

.advice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.advice-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
  color: #304258;
  font-size: 14px;
}

.advice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--teal);
}

.advice-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(241, 95, 103, 0.34);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(241, 95, 103, 0.12);
  }
}

@keyframes bar {
  from {
    height: 10px;
  }
  to {
    height: 30px;
  }
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: 1fr 1fr;
  }

  .report-panel {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    padding: 14px;
    flex-direction: column;
  }

  .top-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .top-actions .primary-button,
  .top-actions .ghost-button,
  .top-actions .file-control {
    flex: 1;
    min-width: 156px;
  }

  .session-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 14px;
  }

  .user-switcher {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .user-switcher label,
  .user-switcher input,
  .user-switcher button {
    flex: 1;
    min-width: 154px;
  }

  .user-switcher select {
    width: 100%;
  }

  .resume-info {
    justify-content: flex-start;
  }

  .workspace {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .reader-toolbar {
    height: auto;
    flex-wrap: wrap;
  }

  .score-block {
    grid-template-columns: 1fr;
  }

  .settings-row {
    flex-direction: column;
    align-items: stretch;
  }

  .review-row {
    grid-template-columns: 1fr;
  }

  .reading-focus-text {
    padding: 20px;
  }

  .reading-focus-translation {
    padding: 11px 14px 13px;
  }

  .reading-focus-translation p,
  .translation-panel p {
    font-size: 13px;
  }

  body.hide-english:not(.hide-japanese) .reading-focus-translation p {
    font-size: 16px;
  }

  .display-controls {
    align-items: stretch;
  }

  .display-controls > span {
    width: 100%;
  }

  .toggle-control {
    flex: 1;
    min-width: 130px;
  }

  .translation-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .translation-header small {
    text-align: left;
  }

  .reading-word,
  .reading-punctuation {
    font-size: 22px;
  }

  .reading-ipa {
    font-size: 12px;
  }
}
