:root {
  --question-card-shadow-soft: var(--shadow-soft, 0 10px 22px rgba(10, 20, 40, 0.06));
}

.question-card,
body:not(.setup-mode) .question-card {
  background: var(--card);
  border: 2px solid var(--clean-blue-700, #35a3c0);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.question-card::after,
body:not(.setup-mode) .question-card::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.stem,
body:not(.setup-mode) .stem {
  font-weight: 400 !important;
  margin: 0 0 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}

.stem strong,
.stem b,
body:not(.setup-mode) .stem strong,
body:not(.setup-mode) .stem b {
  font-weight: 800 !important;
}

.stem .stem-final-prompt,
.stem .stem-final-prompt strong,
.stem .stem-final-prompt b,
body:not(.setup-mode) .stem .stem-final-prompt,
body:not(.setup-mode) .stem .stem-final-prompt strong,
body:not(.setup-mode) .stem .stem-final-prompt b {
  font-weight: 800 !important;
}

.stem .stem-final-prompt,
body:not(.setup-mode) .stem .stem-final-prompt {
  margin-top: 0.25rem;
}

.card-topline,
.question-header,
body:not(.setup-mode) .question-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}

.question-flag-btn {
  display: inline-flex !important;
  position: relative;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--control-height, 44px);
  min-width: var(--control-height, 44px);
  min-height: var(--control-height, 44px);
  margin-left: 0.2rem;
  padding-inline: 0 !important;
  font-size: 1.35rem !important;
  line-height: 1;
}

.question-flag-btn:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 3px;
}

.question-flag-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  z-index: 10;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0.2rem);
  transition: opacity 120ms ease, transform 120ms ease;
}

.question-flag-btn:hover::after,
.question-flag-btn:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.question-counter,
.pill,
body:not(.setup-mode) .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #c9d9f5;
  background: var(--clean-blue-100, #e8f7fb);
  border-radius: 999px;
  margin-bottom: 0;
  color: var(--clean-blue-950, #0e4f7a);
  font-weight: 700;
  line-height: 1;
}

.admin-question-meta,
body:not(.setup-mode) .admin-question-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0.58rem 0.68rem;
  border: 1px dashed rgba(8, 94, 204, 0.42);
  border-radius: 12px;
  background: var(--clean-blue-100, rgba(53, 163, 192, 0.1));
  color: var(--clean-blue-950, #0e4f7a);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-question-meta[hidden],
body:not(.setup-mode) .admin-question-meta[hidden] {
  display: none !important;
}

.admin-question-meta__item,
body:not(.setup-mode) .admin-question-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.admin-question-meta__label,
body:not(.setup-mode) .admin-question-meta__label {
  color: #475569;
  font-weight: 700;
}

.qc-label,
body:not(.setup-mode) .qc-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clean-blue-900, #1f7fa8);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.qc-value,
#questionNumber,
body:not(.setup-mode) #questionNumber {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clean-blue-900, #1f7fa8);
  line-height: 1;
}

#topicTag,
body:not(.setup-mode) #topicTag {
  font-size: 0.95rem;
  color: var(--clean-blue-900, #1f7fa8);
  text-align: right;
}

.question-img,
body:not(.setup-mode) .question-img {
  display: block;
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 0.4rem auto 0.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--question-card-shadow-soft);
}

.solution-img,
body:not(.setup-mode) .solution-img {
  display: block;
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 0.3rem auto 0.45rem;
  border: 1px solid var(--border);
  box-shadow: var(--question-card-shadow-soft);
}

.question-image-column .question-img,
body:not(.setup-mode) .question-image-column .question-img {
  width: 70%;
  max-width: 100%;
  max-height: 420px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 900px) {
  .question-image-column .question-img,
  body:not(.setup-mode) .question-image-column .question-img {
    width: 100%;
  }
}

.question-image-column[hidden],
.question-img[hidden],
.solution-img[hidden] {
  display: none !important;
}

.options,
body:not(.setup-mode) .options {
  display: grid;
  gap: 0.5rem;
  margin: 0.2rem 0 0.6rem;
  padding: 0;
  list-style: none;
}

.option,
body:not(.setup-mode) .option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 1rem;
  transition: border 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.option input,
body:not(.setup-mode) .option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--clean-blue-700, var(--accent-2, #35a3c0));
  pointer-events: auto;
}

.option:hover,
body:not(.setup-mode) .option:hover {
  border-color: #d9dee7;
  box-shadow: var(--question-card-shadow-soft);
  transform: translateY(-1px);
}

.option.active,
body:not(.setup-mode) .option.active {
  border-color: rgba(53, 163, 192, 0.72) !important;
  background: rgba(53, 163, 192, 0.08) !important;
}

.option.correct,
body:not(.setup-mode) .option.correct {
  border-color: rgba(34, 197, 94, 0.8) !important;
  background: #ecfdf3 !important;
}

.option.user-choice,
body:not(.setup-mode) .option.user-choice {
  border-color: rgba(239, 68, 68, 0.6) !important;
  background: #fef2f2 !important;
}

.option .badge,
body:not(.setup-mode) .option .badge {
  justify-self: start;
  font-size: 0.8rem;
  padding: 0.25rem 0.45rem;
  border-radius: 8px;
}

.option input:checked + span,
.option input:checked + label,
.option input:checked ~ span,
body:not(.setup-mode) .option input:checked + span,
body:not(.setup-mode) .option input:checked + label,
body:not(.setup-mode) .option input:checked ~ span {
  color: var(--ink);
}

.post-options-divider,
body:not(.setup-mode) .post-options-divider {
  width: 100%;
  height: 2px;
  margin: 1rem 0 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.08) 0%, rgba(15, 76, 129, 0.78) 50%, rgba(15, 76, 129, 0.08) 100%);
}

.solution,
body:not(.setup-mode) .solution {
  margin-top: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
  border: 2px solid rgba(15, 76, 129, 0.82);
  line-height: 1.32;
  box-shadow: 0 14px 32px rgba(15, 76, 129, 0.11);
}

.solution h4,
body:not(.setup-mode) .solution h4 {
  margin: 0 0 0.22rem;
}

#solution-main,
body:not(.setup-mode) #solution-main {
  margin: 0 0 0.12rem;
  line-height: 1.34;
  font-size: 1rem;
}

.correct-line,
body:not(.setup-mode) .correct-line {
  color: var(--correct, #166534);
  font-weight: 800;
  margin: 0.12rem 0 0.9rem !important;
  font-size: 0.95rem;
}

.solution-steps-text,
.solution .solution-steps,
body:not(.setup-mode) .solution-steps-text,
body:not(.setup-mode) .solution .solution-steps {
  margin: 0.12rem 0 0;
  white-space: pre-wrap;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: inherit;
  line-height: 1.28;
  font-size: 1rem;
}

.solution-steps-text p,
body:not(.setup-mode) .solution-steps-text p {
  margin: 0;
}

.solution-label,
body:not(.setup-mode) .solution-label {
  color: var(--ink, #0f172a);
  display: inline-block;
  margin: 0.35rem 0 0.12rem;
  font-weight: 900 !important;
}

.solution-reference-line,
body:not(.setup-mode) .solution-reference-line {
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.1rem 0.38rem;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--ink, #0f172a);
  font-weight: 900 !important;
}

.question-card .mjx-container[display="true"],
body:not(.setup-mode) .question-card .mjx-container[display="true"] {
  margin: 0.04rem 0 0.04rem !important;
}

.question-card .mjx-container[display="true"] + br + br,
body:not(.setup-mode) .question-card .mjx-container[display="true"] + br + br {
  display: none;
}

.solution-steps-text .mjx-container[display="true"] + br,
body:not(.setup-mode) .solution-steps-text .mjx-container[display="true"] + br {
  display: none;
}

.solution-math-block,
body:not(.setup-mode) .solution-math-block {
  margin: 0.08rem 0 0.16rem;
  text-align: center;
  line-height: 1.1;
}

.solution-math-block .mjx-container[display="true"],
body:not(.setup-mode) .solution-math-block .mjx-container[display="true"] {
  margin: 0 !important;
}

.question-card table,
body:not(.setup-mode) .question-card table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 0.8rem;
  font-size: 0.95rem;
}

.question-card th,
.question-card td,
body:not(.setup-mode) .question-card th,
body:not(.setup-mode) .question-card td {
  border: 1px solid var(--border);
  padding: 0.4rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

.question-card thead,
body:not(.setup-mode) .question-card thead {
  background: #f8fafc;
}

/* Premium shared study UI: panels, status, controls, and empty states. */
:root {
  --study-panel-bg: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --study-panel-border: rgba(8, 119, 255, 0.14);
  --study-panel-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  --study-control-shadow: 0 10px 22px rgba(8, 119, 255, 0.12);
}

body:not(.setup-mode) .panel,
body:not(.setup-mode) .nav-panel,
body:not(.setup-mode) .reference-panel,
body:not(.setup-mode) .info-card {
  background: var(--study-panel-bg) !important;
  border: 1px solid var(--study-panel-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--study-panel-shadow) !important;
}

body:not(.setup-mode) .panel,
body:not(.setup-mode) .nav-panel {
  padding: 1rem !important;
}

body:not(.setup-mode) .panel h3,
body:not(.setup-mode) .nav-panel h3,
body:not(.setup-mode) .ref-header h3,
body:not(.setup-mode) .info-card h4 {
  color: var(--ink) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

body:not(.setup-mode) .ref-header {
  padding: 0.75rem 0.9rem !important;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
  border-bottom: 1px solid rgba(8, 119, 255, 0.12) !important;
}

body:not(.setup-mode) .side-status {
  margin-top: 0.9rem !important;
  padding-top: 0.9rem !important;
  border-top: 1px solid rgba(8, 119, 255, 0.12) !important;
}

body:not(.setup-mode) .stats {
  gap: 0.42rem !important;
  color: #475569 !important;
}

body:not(.setup-mode) .stat-line,
body:not(.setup-mode) .attempt-row,
body:not(.setup-mode) .status-row {
  min-height: 2rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  font-weight: 650;
}

body:not(.setup-mode) .stat-line:last-child,
body:not(.setup-mode) .attempt-row:last-child,
body:not(.setup-mode) .status-row:last-child {
  border-bottom: 0;
}

body:not(.setup-mode) .stat-line span:last-child,
body:not(.setup-mode) .attempt-value,
body:not(.setup-mode) .status-time {
  color: var(--ink) !important;
  font-weight: 800 !important;
}

body:not(.setup-mode) .controls,
body:not(.setup-mode) .nav-actions,
body:not(.setup-mode) .action-buttons {
  gap: 0.75rem !important;
}

body:not(.setup-mode) .controls button,
body:not(.setup-mode) .nav-actions button,
body:not(.setup-mode) .action-buttons button,
body:not(.setup-mode) .flag-nav,
body:not(.setup-mode) .finish-nav,
body:not(.setup-mode) .ref-tab,
body:not(.setup-mode) .ref-link {
  min-height: 42px;
  border-radius: 12px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease !important;
}

body:not(.setup-mode) .controls button:hover,
body:not(.setup-mode) .nav-actions button:hover,
body:not(.setup-mode) .action-buttons button:hover,
body:not(.setup-mode) .flag-nav:hover,
body:not(.setup-mode) .finish-nav:hover,
body:not(.setup-mode) .ref-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--study-control-shadow);
}

body:not(.setup-mode) .controls .primary,
body:not(.setup-mode) button.check-btn,
body:not(.setup-mode) .nav-actions #next-btn {
  background: linear-gradient(115deg, #0057d9, #1493ff) !important;
  border-color: rgba(8, 119, 255, 0.55) !important;
  color: #ffffff !important;
  box-shadow: var(--study-control-shadow) !important;
}

body:not(.setup-mode) .controls .secondary,
body:not(.setup-mode) button.clear-btn,
body:not(.setup-mode) .nav-actions #prev-btn,
body:not(.setup-mode) .ref-tab {
  background: #ffffff !important;
  border-color: rgba(8, 119, 255, 0.22) !important;
  color: #075985 !important;
}

body:not(.setup-mode) .controls .danger,
body:not(.setup-mode) .finish-nav {
  background: linear-gradient(120deg, #ef4444, #f97316) !important;
  border-color: rgba(239, 68, 68, 0.48) !important;
  color: #ffffff !important;
}

body:not(.setup-mode) .controls button:disabled,
body:not(.setup-mode) .nav-actions button:disabled,
body:not(.setup-mode) .action-buttons button:disabled,
body:not(.setup-mode) .flag-nav:disabled,
body:not(.setup-mode) .finish-nav:disabled {
  background: #e5e7eb !important;
  border-color: #cbd5e1 !important;
  color: #64748b !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  transform: none !important;
}

body:not(.setup-mode) .controls button:disabled:hover,
body:not(.setup-mode) .nav-actions button:disabled:hover,
body:not(.setup-mode) .action-buttons button:disabled:hover,
body:not(.setup-mode) .flag-nav:disabled:hover,
body:not(.setup-mode) .finish-nav:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

body:not(.setup-mode) .flag-nav {
  background: #fff7ed !important;
  border-color: rgba(245, 158, 11, 0.32) !important;
  color: #92400e !important;
}

body:not(.setup-mode) .flag-nav.active {
  background: #ffedd5 !important;
  border-color: rgba(245, 158, 11, 0.72) !important;
}

body:not(.setup-mode) .nav-grid {
  gap: 0.35rem !important;
  scrollbar-width: thin;
}

body:not(.setup-mode) .nav-btn {
  position: relative;
  min-height: 36px;
  border-radius: 10px !important;
  border: 1px solid rgba(148, 163, 184, 0.28) !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-weight: 800 !important;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease !important;
}

body:not(.setup-mode) .nav-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 119, 255, 0.34) !important;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

body:not(.setup-mode) .nav-btn.answered:not(.current) {
  border-color: rgba(8, 119, 255, 0.4) !important;
  background: rgba(8, 119, 255, 0.07) !important;
}

body:not(.setup-mode) .nav-btn.opened:not(.current) {
  border-color: rgba(53, 163, 192, 0.5) !important;
  background: rgba(53, 163, 192, 0.1) !important;
  color: #075985 !important;
}

body:not(.setup-mode) .nav-btn.flagged {
  border-color: rgba(245, 158, 11, 0.7) !important;
  background: #fff7ed !important;
  color: #92400e !important;
}

body:not(.setup-mode) .nav-btn.flagged::after {
  content: "⚑";
  position: absolute;
  top: -0.35rem;
  right: -0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #f59e0b;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(146, 64, 14, 0.18);
  pointer-events: none;
}

body:not(.setup-mode) .nav-btn.correct {
  border-color: rgba(34, 197, 94, 0.72) !important;
  background: #ecfdf3 !important;
  color: #166534 !important;
}

body:not(.setup-mode) .nav-btn.incorrect {
  border-color: rgba(239, 68, 68, 0.72) !important;
  background: #fef2f2 !important;
  color: #991b1b !important;
}

body:not(.setup-mode) .nav-btn.current,
body:not(.setup-mode) .nav-btn.active {
  border-color: #0f2f6f !important;
  background: #0f2f6f !important;
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(15, 47, 111, 0.24) !important;
}

body:not(.setup-mode) .file-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 999px;
  background: #fff5f5;
  color: #b91c1c;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

body:not(.setup-mode) .file-remove:hover {
  background: #fee2e2;
  border-color: rgba(239, 68, 68, 0.65);
}

body:not(.setup-mode) .status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 0.45rem !important;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: #475569;
  font-weight: 800 !important;
}

body:not(.setup-mode) .status:empty {
  display: none;
}

body:not(.setup-mode) .status.correct {
  background: #ecfdf3;
  color: #166534 !important;
}

body:not(.setup-mode) .status.incorrect {
  background: #fef2f2;
  color: #991b1b !important;
}

body:not(.setup-mode) .status-badge,
body:not(.setup-mode) .badge,
body:not(.setup-mode) .badge-correct,
body:not(.setup-mode) .badge-wrong,
body:not(.setup-mode) .badge-user {
  border-radius: 999px !important;
  font-weight: 800 !important;
}

body:not(.setup-mode) .badge-correct {
  background: #ecfdf3;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #166534;
}

body:not(.setup-mode) .badge-wrong {
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #991b1b;
}

body:not(.setup-mode) .badge-user {
  background: rgba(8, 119, 255, 0.06);
  border: 1px solid rgba(8, 119, 255, 0.28);
  color: #0057d9;
}

body:not(.setup-mode) .empty,
body:not(.setup-mode) .error,
body:not(.setup-mode) .loading-state {
  width: min(680px, 100%);
  margin: 1rem auto;
  padding: 2rem 1.25rem !important;
  border: 1px dashed rgba(8, 119, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--study-panel-shadow);
  color: #475569 !important;
  font-weight: 700;
}

body:not(.setup-mode) .modal {
  border: 1px solid var(--study-panel-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22) !important;
}

body:not(.setup-mode) .modal .actions button,
body:not(.setup-mode) .modal .actions .cta {
  min-height: 42px;
  border-radius: 12px;
  font-weight: 800;
}

/* Keep study-mode cards at normal browser scale on laptops and external displays. */
body.theme-new {
  font-size: 16px !important;
}

body.theme-new .question-card,
body.theme-new .setup-card,
body.theme-new .panel,
body.theme-new .nav-panel {
  font-size: 1rem !important;
}

body.theme-new .stem,
body.theme-new .option,
body.theme-new .solution,
body.theme-new .solution-steps-text {
  font-size: 1rem !important;
}

body.theme-new .nav-btn {
  font-size: 0.95rem !important;
  min-height: 38px;
}

body.theme-new .nav-panel h3 {
  font-size: 1.05rem !important;
}

body.theme-new .legend {
  font-size: 0.95rem !important;
}

body.theme-new:not(.setup-mode) .nav-actions {
  padding: 0.45rem;
  border: 1px solid rgba(8, 119, 255, 0.5);
  border-radius: 16px;
  background: #0057d9;
  box-shadow: 0 12px 24px rgba(8, 61, 142, 0.16);
}

body.theme-new:not(.setup-mode) .nav-actions button:not(:disabled),
body.theme-new:not(.setup-mode) .nav-actions #prev-btn:not(:disabled),
body.theme-new:not(.setup-mode) .nav-actions #next-btn:not(:disabled) {
  min-width: 6.5rem;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.theme-new:not(.setup-mode) .nav-actions button:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 8px 16px rgba(8, 47, 65, 0.18) !important;
}

body.theme-new:not(.setup-mode) .nav-actions .progress {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
