:root {
  --bg: #eaf0eb;
  --card: #ffffff;
  --line: #d8e4dc;
  --ink: #27423a;
  --muted: #71867b;
  --brand: #6f998b;
  --brand-deep: #3f6b5a;
  --brand-soft: #e2ede6;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(31, 62, 49, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(70% 55% at 15% 0%, rgba(155, 187, 168, 0.25), transparent 60%),
    radial-gradient(65% 55% at 100% 100%, rgba(139, 174, 182, 0.2), transparent 55%),
    linear-gradient(150deg, #eef3ee, #e3ebe5);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
}

button,
textarea,
input,
select {
  font-family: inherit;
}

button {
  border: 1px solid var(--line);
  background: #fff;
  color: #35584c;
  border-radius: 11px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: box-shadow 0.15s ease, transform 0.05s ease;
}

button:hover {
  box-shadow: 0 5px 16px rgba(60, 100, 80, 0.14);
}

button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #6f998b, #92b2a2);
  color: #fff;
  font-weight: 600;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 28px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  font-size: 28px;
  background: linear-gradient(135deg, #6f998b, #9fb9ac);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(72, 118, 96, 0.25);
}

h1 {
  margin: 0;
  font-size: 22px;
}

.brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.85fr);
  gap: 18px;
  padding: 0 28px 28px;
  align-items: stretch;
}

.panel {
  background: var(--card);
  border: 1px solid rgba(108, 150, 132, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: 17px;
}

.badge {
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.badge.green {
  background: #e4efe8;
}

.mode-tabs {
  display: flex;
  gap: 6px;
}

.mode-tabs button {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
}

.mode-tabs button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.drill-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  min-height: 330px;
}

.hint {
  color: var(--muted);
  font-size: 14px;
}

.drill-pattern {
  font-size: clamp(17px, 2.3vw, 23px);
  line-height: 1.55;
  padding: 14px 16px;
  border: 1px dashed #b9cfc1;
  border-radius: 12px;
  background: #f5f9f5;
  min-height: 64px;
}

.cue {
  font-size: 15px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 10px 14px;
  border-radius: 10px;
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.answer-box {
  display: none;
  border-left: 4px solid var(--brand);
  background: #f1f7f2;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.6;
}

.answer-box.show {
  display: block;
}

.drill-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.train-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  background: #f6faf7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 12px;
}

.train-stats b {
  color: var(--brand-deep);
}

.train-stats button {
  font-size: 12px;
  padding: 4px 9px;
  color: var(--muted);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 18px;
}

.topic-list button {
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 12px;
}

.topic-list button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.ai-panel {
  min-height: 620px;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg .who {
  font-size: 12px;
  color: var(--muted);
}

.msg p {
  margin: 0;
  background: #f2f6f3;
  border-radius: 4px 14px 14px 14px;
  padding: 10px 13px;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.msg.user {
  align-items: flex-end;
}

.msg.user p {
  background: var(--brand-soft);
  border-radius: 14px 4px 14px 14px;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.chat-input button {
  align-self: flex-end;
}

.voice-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 2px 0;
  border-top: 1px dashed var(--line);
}

.voice-bar button {
  font-size: 13px;
  padding: 6px 11px;
}

.voice-bar select {
  max-width: 230px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 13px;
  background: #fff;
}

.voice-status {
  flex: 1 1 100%;
  font-size: 12px;
  color: var(--muted);
  min-height: 1em;
}

.coach-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f6faf7;
  border-bottom: 1px solid var(--line);
}

.coach-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
}

.coach-bar select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
  max-width: 46%;
}

.coach-bar button {
  font-size: 13px;
  padding: 7px 12px;
}

.coach-bar button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.coach-hint {
  margin: 0;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--brand-deep);
  background: #eef6f0;
  border-bottom: 1px solid var(--line);
}

.msg-tools {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.msg-tools button {
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

.msg-tools button:hover {
  color: var(--brand-deep);
}

.msg.user .msg-tools {
  align-self: flex-end;
}

.api-state {
  font-size: 12px;
  color: var(--muted);
  padding: 0 16px 12px;
}

.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal-mask[hidden] {
  display: none;
}

.modal {
  width: min(460px, 92vw);
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(20, 48, 38, 0.3);
}

.modal label {
  display: block;
  margin: 12px 0;
  font-size: 13px;
  color: var(--muted);
}

.modal input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.modal-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal.assess-modal {
  width: min(920px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.assess-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.assess-head h3 {
  margin: 0;
  font-size: 18px;
}

.assess-head p {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.assess-body {
  overflow-y: auto;
  padding: 18px 20px 22px;
}

.assess-home h4,
.assess-report h4,
.assess-history h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.assess-steps {
  background: #f2f8f3;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 13px;
  line-height: 1.8;
  color: #2d4a3c;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
  margin: 16px 0 4px;
}

.module-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-card.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(83, 127, 107, 0.12);
}

.module-card.locked {
  background: #fafbfa;
  opacity: 0.78;
}

.module-icon {
  font-size: 30px;
  line-height: 1;
}

.module-card h4 {
  margin: 0;
  font-size: 16px;
}

.module-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.module-meta {
  font-size: 12px;
  color: var(--brand-deep);
}

.module-card button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.assess-setup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.assess-setup label {
  font-size: 13px;
  color: var(--muted);
}

.assess-setup select {
  margin-left: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}

.survey-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 10px;
  background: #fff;
}

.survey-toggle input {
  accent-color: var(--brand);
}

.assess-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.student-info-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  padding: 9px 12px;
  background: #f4f8f6;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}

.student-info-bar span {
  color: var(--muted);
}

.student-info-bar button {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 13px;
}

.student-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.student-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.student-q {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 7px;
  color: var(--ink);
}

.student-q b {
  color: #c0392b;
}

.student-code-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  padding: 11px 13px;
  background: var(--brand-soft);
  border: 1px solid var(--brand);
  border-radius: 12px;
  font-size: 13px;
}

.student-code-box b {
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--brand-deep);
  font-family: "SFMono-Regular", Consolas, "Courier New", monospace;
}

.student-code-box button {
  padding: 5px 11px;
  font-size: 12px;
}

.student-code-box p {
  flex-basis: 100%;
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.student-row input,
.student-row select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  background: #fbfdfc;
  color: var(--ink);
}

.assess-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
  margin: 8px 0 14px;
}

.assess-kpi {
  border: 1px solid var(--line);
  background: #f8fbf8;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.assess-kpi .kpi-label {
  font-size: 12px;
  color: var(--muted);
}

.assess-kpi .kpi-num {
  margin: 4px 0 2px;
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.1;
}

.assess-kpi.good .kpi-num {
  color: #2e7d5b;
}

.assess-kpi.bad .kpi-num {
  color: #b3554b;
}

.assess-kpi .kpi-sub {
  font-size: 11px;
  color: var(--muted);
}

.assess-quiz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.assess-progress {
  height: 6px;
  border-radius: 999px;
  background: #e6efe8;
  overflow: hidden;
  margin: 6px 0 14px;
}

.assess-progress > div {
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.assess-banner {
  background: #eef6f0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 13px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--brand-deep);
}

.assess-error {
  margin-top: 8px;
  color: #b3554b;
  font-size: 13px;
}

.assess-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.assess-report-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 13px;
}

.assess-report-table th,
.assess-report-table td {
  border-bottom: 1px solid var(--line);
  padding: 7px 8px;
  text-align: left;
  vertical-align: top;
}

.assess-report-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.assess-report-table .q {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 260px;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
}

.tag.ok {
  background: #e4efe8;
  color: #2e7d5b;
}

.tag.no {
  background: #fbeae7;
  color: #b3554b;
}

.tag.improve {
  background: #e3f2e5;
  color: #1e7a46;
}

.tag.keep {
  background: #eef2f6;
  color: #3f5d7a;
}

.tag.regress {
  background: #fdeee8;
  color: #b3554b;
}

.tag.still {
  background: #f3f1ea;
  color: #8a6d3b;
}

.assess-reco {
  border-left: 4px solid #e4b95c;
  background: #fbf6ea;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b5420;
  margin: 12px 0;
}

.survey-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 12px;
}

.survey-block {
  margin: 8px 0 2px;
}

.survey-block h5 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--brand-deep);
  border-left: 3px solid var(--brand);
  padding-left: 8px;
}

.survey-block p {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.6;
  color: #66737a;
}

.survey-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 13px;
  background: #fff;
}

.survey-q {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.survey-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.survey-opt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--ink);
  background: #fafcfb;
  user-select: none;
}

.survey-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.survey-opt:hover {
  border-color: var(--brand);
}

.survey-opt.checked {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-deep);
  font-weight: 600;
}

.assess-survey-report {
  margin: 10px 0 14px;
}

.assess-survey-report h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.assess-history table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.assess-history th,
.assess-history td {
  border-bottom: 1px solid var(--line);
  padding: 7px 8px;
  text-align: left;
}

.assess-history th {
  color: var(--muted);
  font-size: 12px;
}

.assess-history td.ok {
  color: #2e7d5b;
  font-weight: 700;
}

.assess-history td.no {
  color: #b3554b;
  font-weight: 700;
}

.assess-history td.survey-col {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.assess-empty {
  color: var(--muted);
  font-size: 13px;
  padding: 18px 0;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 32, 25, 0.88);
  backdrop-filter: blur(6px);
}

.access-gate[hidden] {
  display: none;
}

.access-card {
  width: min(400px, 94vw);
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(10, 30, 22, 0.45);
}

.access-lock {
  font-size: 34px;
  line-height: 1;
}

.access-card h3 {
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 20px;
}

.access-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.access-card input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  letter-spacing: 1px;
}

.access-card button {
  width: 100%;
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 15px;
}

.access-error {
  margin-top: 10px;
  color: #b3554b;
  font-size: 13px;
}

.access-tip {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.access-pay-extra {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.access-pay-btn {
  background: #f2fbf7;
  border-color: #bcd9cb;
  color: var(--brand-deep);
  font-weight: 600;
}

.modal-mask#payModal {
  z-index: 120;
}

.pay-modal {
  text-align: center;
}

.pay-modal h3 {
  margin: 4px 0 8px;
  font-size: 19px;
}

.pay-amount {
  margin: 0 0 12px;
  color: #b3554b;
  font-size: 17px;
  font-weight: 700;
}

.pay-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.pay-qr img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.pay-qr-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 120px;
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #f7faf8;
}

.pay-qr-empty[hidden],
.pay-qr img[hidden] {
  display: none;
}

.pay-notice {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.pay-steps {
  margin-top: 12px;
  padding: 10px 14px;
  text-align: left;
  background: #f7faf8;
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink);
}

.pay-steps p {
  margin: 0 0 4px;
  font-weight: 600;
}

.pay-steps ol {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.pay-actions {
  justify-content: center;
}

.app-header,
.app-main {
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1500px) {
  .app-main {
    grid-template-columns: minmax(0, 1.45fr) minmax(400px, 0.9fr);
    gap: 22px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .chat-log {
    max-height: calc(100vh - 300px);
    min-height: 300px;
  }
}

@media (max-width: 920px) {
  .app-header {
    padding: 14px 16px 10px;
  }

  .app-main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 14px 20px;
  }

  .panel-head {
    padding: 12px 14px;
  }

  .drill-area {
    padding: 14px;
    min-height: 0;
  }

  .topic-list {
    padding: 0 14px 14px;
  }

  .chat-log {
    max-height: 52vh;
    min-height: 240px;
  }

  .app-main {
    grid-template-columns: 1fr;
  }

  .ai-panel {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .logo {
    width: 44px;
    height: 44px;
    font-size: 23px;
    border-radius: 13px;
  }

  h1 {
    font-size: 18px;
  }

  .brand p {
    font-size: 12px;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions button {
    flex: 1 1 auto;
    font-size: 13px;
  }

  .mode-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .mode-tabs button {
    flex: 1 0 auto;
  }

  .coach-bar select {
    max-width: 100%;
    flex: 1 1 46%;
  }

  .coach-bar button {
    flex: 1 1 46%;
  }

  .voice-bar select {
    flex: 1 1 100%;
    max-width: none;
  }

  .chat-input textarea,
  .drill-area textarea {
    font-size: 16px;
  }

  .chat-input {
    flex-wrap: wrap;
  }

  .chat-input textarea {
    min-width: 100%;
  }

  .drill-pattern {
    font-size: 17px;
  }

  .modal {
    padding: 16px;
  }
}
