:root {
  --bar-green: #00796b;
  --green: #00796b;
  --green-active: #009688;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --soft-line: #eceff1;
  --paper: #ffffff;
  --result-bg: #f7f9fa;
  --shadow: 0 1px 2px rgba(60,64,67,.28), 0 1px 3px 1px rgba(60,64,67,.12);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.appbar {
  height: 64px;
  width: 100%;
  background: var(--bar-green);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand img {
  display: block;
  width: 213px;
  height: 31px;
  object-fit: contain;
}
.brand-product {
  margin-left: 13px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.55);
}

.top-help {
  margin-left: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.top-help:hover { color: #fff; }

.page {
  width: 100%;
  padding: 30px 38px 70px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.dig-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.lookup-card {
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #eeeeee;
  min-height: 206px;
  padding: 39px 18px 0;
}

.name-label {
  display: block;
  color: #00897b;
  font-size: 16px;
  margin: 0 0 1px;
}

#name {
  width: 100%;
  height: 34px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font: 20px/34px Arial, Helvetica, sans-serif;
  color: var(--text);
  padding: 0;
  background: transparent;
}
#name:focus {
  border-bottom-color: var(--green-active);
  box-shadow: inset 0 -1px 0 var(--green-active);
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-height: 110px;
  padding-top: 42px;
  overflow: visible;
}

.tab {
  appearance: none;
  border: none;
  border-radius: 2px;
  background: transparent;
  flex: 0 0 auto;
  min-width: 56px;
  height: 48px;
  padding: 0 10px;
  margin-right: 4px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.tab:hover { background: #f1f3f4; }
.tab.active {
  background: var(--green-active);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.28);
}

.answers {
  margin: 86px 0 0;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
}

.answer-card {
  display: grid;
  grid-template-columns: 120px minmax(0,1fr);
  min-height: 160px;
  border-bottom: 1px solid var(--soft-line);
}
.answer-card:last-child { border-bottom: 0; }
.answer-type {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  padding: 28px 20px;
}
.answer-main {
  padding: 36px 56px 34px 20px;
  min-width: 0;
}
.answer-field { margin: 0 0 22px; }
.answer-field:last-child { margin-bottom: 0; }
.answer-label {
  display: block;
  margin-bottom: 14px;
  color: #202124;
  font-weight: 700;
  font-size: 17px;
}
.answer-value {
  display: block;
  color: #202124;
  font: 16px/1.55 Consolas, "Liberation Mono", Menlo, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}
.no-record {
  min-height: 96px;
  padding: 34px 42px;
  color: #202124;
  font-weight: 700;
}
.error-message {
  margin: 86px 0 0;
  color: #b00020;
  font-weight: 700;
}

.raw-switch {
  margin: 86px 0 0 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #3c4043;
  font-size: 16px;
  user-select: none;
}
.raw-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.switch-ui {
  width: 38px;
  height: 18px;
  border-radius: 20px;
  background: rgba(0,150,136,.35);
  position: relative;
  display: inline-block;
}
.switch-ui span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-active);
  box-shadow: 0 1px 3px rgba(0,0,0,.35);
  position: absolute;
  left: 14px;
  top: -3px;
}
.raw-switch input:not(:checked) + .switch-ui { background: rgba(95,99,104,.22); }
.raw-switch input:not(:checked) + .switch-ui span {
  left: 0;
  background: #9aa0a6;
}

.raw-output {
  margin: 34px 0 0;
  min-height: 160px;
  padding: 28px 32px;
  overflow: auto;
  border: 1px solid #dfe3e7;
  box-shadow: var(--shadow);
  background: #eef2f4;
  color: #1b5e20;
  font: 16px/1.55 Consolas, "Liberation Mono", Menlo, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.site-footer {
  border-top: 1px solid #eceff1;
  padding: 22px 38px 28px;
  color: #6f7479;
  font-size: 12px;
}
.footer-guides {
  max-width: 1180px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-guides a { color: #5f6368; }
.footer-guides a:first-child {
  color: var(--green);
  font-weight: 700;
}
.copyright {
  max-width: 1180px;
  margin: 0 auto;
}

.article-page,
.guide-index {
  max-width: 860px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--green);
}
.article-page h1,
.guide-index h1 {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  color: #202124;
}
.article-description,
.guide-index > p {
  margin: 0 0 22px;
  color: #5f6368;
  font-size: 18px;
  line-height: 1.55;
}
.article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  margin: 8px 0 30px;
  background: var(--green);
  color: #fff;
  border-radius: 2px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,.25);
}
.article-cta:hover { color: #fff; text-decoration: none; }
.article-cta.bottom { margin-top: 14px; }
.article-body p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.72;
  color: #2d3135;
}
.guide-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.guide-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #e0e4e7;
  color: #202124;
}
.guide-list a:hover {
  text-decoration: none;
  border-color: #b5c8bd;
}
.guide-list strong {
  display: block;
  color: var(--green);
  font-size: 16px;
  margin-bottom: 5px;
}
.guide-list span {
  display: block;
  color: #5f6368;
}

@media (max-width: 900px) {
  .appbar { height: 56px; padding: 0 18px; }
  .brand img { width: 158px; height: auto; }
  .brand-product { font-size: 20px; margin-left: 9px; }
  .top-help {
    font-size: 12px;
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .page { padding: 34px 0 60px; }
  .dig-shell { max-width: none; }
  .lookup-card {
    border-left: 0;
    border-right: 0;
    min-height: 202px;
    padding: 32px 18px 0;
  }
  #name { font-size: 18px; height: 38px; line-height: 38px; }
  .tabs {
    flex-wrap: wrap;
    padding-top: 28px;
    min-height: 120px;
    overflow: visible;
  }
  .tab {
    min-width: 64px;
    height: 42px;
    padding: 0 13px;
    margin-right: 4px;
    font-size: 14px;
  }
  .answers { margin: 82px 18px 0; }
  .answer-card { grid-template-columns: 96px minmax(0,1fr); min-height: 136px; }
  .answer-main { padding: 30px 24px 28px 8px; }
  .answer-type { font-size: 15px; padding: 20px 12px; }
  .answer-label { font-size: 15px; }
  .answer-value { font-size: 14px; }
  .raw-switch { margin-left: 18px; }
  .raw-output { margin-left: 18px; margin-right: 18px; font-size: 13px; }
  .article-page, .guide-index { padding: 0 24px; }
  .article-page h1, .guide-index h1 { font-size: 30px; }
  .site-footer { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 520px) {
  .brand img { width: 136px; }
  .brand-product { font-size: 18px; }
  .top-help { max-width: 38vw; font-size: 11px; }
  .answer-card { grid-template-columns: 76px minmax(0,1fr); }
  .answer-main { padding-right: 16px; }
}

.article-meta {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  margin: 0 0 14px;
  border: 1px solid #dbe5e2;
  border-radius: 999px;
  color: #54605c;
  background: #f7faf9;
  font-size: 12px;
  font-weight: 700;
}
.article-body h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #202124;
}
.article-body h3 {
  margin: 26px 0 10px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  color: #202124;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px 24px;
  padding: 0;
  color: #2d3135;
  font-size: 17px;
  line-height: 1.7;
}
.article-body li { margin: 0 0 8px; }
.article-body code,
.guide-index code {
  padding: 1px 4px;
  border-radius: 3px;
  background: #f1f3f4;
  color: #202124;
  font-family: Consolas, "Liberation Mono", Menlo, monospace;
  font-size: .92em;
}
.article-body pre {
  margin: 0 0 22px;
  padding: 14px 16px;
  overflow: auto;
  border: 1px solid #dfe3e7;
  border-radius: 3px;
  background: #f7f9fa;
}
.article-body pre code {
  padding: 0;
  background: transparent;
  color: #1f2933;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre;
}
.article-body table {
  width: 100%;
  margin: 0 0 24px;
  border-collapse: collapse;
  border: 1px solid #e0e4e7;
  font-size: 15px;
}
.article-body th,
.article-body td {
  padding: 10px 12px;
  border: 1px solid #e0e4e7;
  text-align: left;
  vertical-align: top;
}
.article-body th {
  background: #f7f9fa;
  font-weight: 700;
}
.guide-category { margin-top: 34px; }
.guide-category h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  color: #202124;
}
.guide-category .guide-list { margin-top: 0; }

@media (max-width: 520px) {
  .article-body table { display: block; overflow-x: auto; }
  .article-body h2 { font-size: 22px; }
  .article-body p, .article-body ul, .article-body ol { font-size: 16px; }
}
