/* SkillDzire Exams student UI (client mock: orange / navy / Inter). */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --sk-orange: #f0441d;
  --sk-orange-hover: #d93817;
  --sk-navy: #071d49;
  --sk-text: #13233f;
  --sk-muted: #60708a;
  --sk-border: #dfe5ed;
  --sk-bg: #f5f7fa;
  --sk-card-radius: 10px;
  --sk-control-radius: 6px;
  --sk-green: #1a8a5f;
  --sk-green-bg: #e7f6ef;
  --sk-red-bg: #fdecea;
  --sk-shadow: 0 8px 24px rgba(22, 42, 70, 0.06);
}

.sk-ui,
.sk-ui * {
  box-sizing: border-box;
}

.sk-ui {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--sk-text);
  background: var(--sk-bg);
}

.sk-logo {
  width: 125px;
  max-width: none;
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.sk-logo--sm {
  width: 100px;
}

.sk-logo--brand {
  width: auto;
  height: 26px;
}

.sk-topbar-left > a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sk-topbar {
  background: #fff;
  border-bottom: 1px solid var(--sk-border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.sk-topbar--center {
  justify-content: center;
}

.sk-topbar-left,
.sk-topbar-right {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.sk-topbar-right {
  gap: 10px;
}

.sk-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.sk-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sk-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.sk-nav a.active,
.sk-nav a[aria-current="page"] {
  color: var(--sk-navy);
  border-bottom-color: var(--sk-orange);
}

.sk-nav a:hover {
  color: var(--sk-text);
}

.sk-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fdeceb;
  color: var(--sk-orange);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6d4cd;
  text-decoration: none;
}

.sk-user-email {
  font-size: 13px;
  color: var(--sk-muted);
}

.sk-user-logout {
  font-size: 13px;
  font-weight: 600;
  color: var(--sk-navy);
  text-decoration: none;
  margin-left: 8px;
}

.sk-user-logout:hover {
  text-decoration: underline;
}

.sk-card {
  background: #fff;
  border: 1px solid var(--sk-border);
  border-top: 4px solid var(--sk-orange);
  border-radius: var(--sk-card-radius);
  box-shadow: var(--sk-shadow);
}

.sk-title {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  color: var(--sk-navy);
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.sk-subtitle {
  max-width: 350px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sk-muted);
}

.sk-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--sk-text);
  margin-bottom: 8px;
}

.sk-required {
  color: var(--sk-orange);
}

.sk-input {
  width: 100%;
  height: 50px;
  border: 1px solid #cfd7e2;
  border-radius: var(--sk-control-radius);
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--sk-text);
  background: #fff;
  outline: none;
}

.sk-input:focus {
  border-color: var(--sk-orange);
  box-shadow: 0 0 0 3px rgba(240, 68, 29, 0.08);
}

.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: var(--sk-control-radius);
  background: var(--sk-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.sk-btn:hover {
  background: var(--sk-orange-hover);
  color: #fff;
}

.sk-btn-block {
  width: 100%;
}

.sk-btn-ghost {
  background: #fff;
  border: 1px solid var(--sk-border);
  color: var(--sk-navy);
}

.sk-btn-ghost:hover {
  background: #f7f9fc;
  color: var(--sk-navy);
}

.sk-btn-muted {
  background: #f1f3f6;
  color: var(--sk-navy);
}

.sk-btn-muted:hover {
  background: #e8ebef;
  color: var(--sk-navy);
}

.sk-btn-sm {
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
}

.sk-note {
  margin-top: 24px;
  padding: 14px 16px;
  background: #f7f9fc;
  border: 1px solid #e3e8ef;
  border-radius: var(--sk-control-radius);
  font-size: 12px;
  line-height: 1.55;
  color: var(--sk-muted);
}

.sk-note strong,
.sk-note-title {
  color: var(--sk-navy);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.sk-footer-links {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #8a95a5;
}

/* Auth pages */
.sk-auth-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background: var(--sk-bg);
}

.sk-auth-wrap {
  width: 100%;
  max-width: 470px;
}

.sk-auth-card {
  padding: 42px 46px 40px;
}

.sk-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.sk-otp-input {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 7px;
  height: 52px;
}

.sk-otp-email {
  text-align: center;
  color: var(--sk-navy);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  word-break: break-word;
}

.sk-otp-step {
  display: none;
}

.sk-otp-step.is-active {
  display: block;
}

.sk-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: var(--sk-navy);
  font-size: 13px;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.sk-link:hover {
  text-decoration: underline;
}

.sk-status {
  min-height: 1.25rem;
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
}

.sk-invite-meta {
  margin: 0 0 24px;
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-control-radius);
  background: #f7f9fc;
  overflow: hidden;
}

.sk-invite-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  font-size: 13px;
  border-top: 1px solid var(--sk-border);
}

.sk-invite-row:first-child {
  border-top: none;
}

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

.sk-invite-row strong {
  color: var(--sk-navy);
  text-align: right;
}

.sk-auth-card .sk-eyebrow {
  text-align: center;
}

.sk-auth-card .sk-title {
  margin-bottom: 8px;
}

/* Dashboard table */
.sk-page {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 24px 60px;
}

.sk-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sk-heading-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fdeceb;
  color: var(--sk-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sk-heading-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--sk-navy);
}

.sk-table-card {
  overflow: hidden;
}

.sk-table {
  width: 100%;
  border-collapse: collapse;
}

.sk-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--sk-muted);
  background: #f7f9fc;
  padding: 14px 24px;
  border-bottom: 1px solid var(--sk-border);
}

.sk-batch-row td {
  padding: 12px 24px;
  background: #fff5f3;
  border-bottom: 1px solid var(--sk-border);
}

.sk-batch-name {
  color: var(--sk-orange);
  font-weight: 700;
  font-size: 13.5px;
}

.sk-batch-course {
  color: var(--sk-orange);
  font-weight: 600;
  font-size: 13px;
  opacity: 0.85;
}

.sk-exam-row td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--sk-border);
  font-size: 14px;
  vertical-align: middle;
}

.sk-exam-name {
  font-weight: 600;
  color: var(--sk-navy);
}

.sk-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.sk-badge-upcoming {
  background: #eef1f6;
  color: var(--sk-muted);
}

.sk-badge-failed {
  background: var(--sk-red-bg);
  color: var(--sk-orange-hover);
}

.sk-badge-passed {
  background: var(--sk-green-bg);
  color: var(--sk-green);
}

.sk-badge-warn {
  background: #fff3cd;
  color: #8a6100;
}

.sk-action {
  text-align: right;
}

.sk-link-result {
  font-size: 13px;
  color: var(--sk-muted);
  text-decoration: none;
}

.sk-link-result:hover {
  color: var(--sk-navy);
  text-decoration: underline;
}

.sk-alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-control-radius);
  background: #fff;
  font-size: 14px;
}

/* Prelaunch */
.sk-prelaunch {
  max-width: 1060px;
  width: 100%;
  margin: 40px auto;
  padding: 0 16px 40px;
}

.sk-prelaunch-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 500px;
  overflow: hidden;
}

.sk-prelaunch-left {
  padding: 40px 32px;
  border-right: 1px solid var(--sk-border);
  display: flex;
  flex-direction: column;
}

.sk-prelaunch-left .sk-logo--brand {
  margin-bottom: 28px;
}

.sk-prelaunch-right {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.sk-panel {
  display: none;
  flex-direction: column;
  flex: 1;
}

.sk-panel.active {
  display: flex;
}

.seb-prep-error {
  margin-top: 12px;
  font-size: 13.5px;
  color: #dc3545;
}

.sk-seb-missing {
  margin-top: 8px;
  margin-bottom: 0;
}

.sk-seb-missing .sk-subtitle {
  font-size: 13.5px;
}

.sk-quiz-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--sk-navy);
  margin-bottom: 20px;
}

.sk-red-divider {
  width: 36px;
  height: 3px;
  background: var(--sk-orange);
  border-radius: 2px;
  margin-bottom: 32px;
}

.sk-meta-grid {
  display: flex;
  gap: 24px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--sk-border);
}

.sk-meta-label {
  font-size: 12px;
  color: var(--sk-muted);
  margin-bottom: 4px;
}

.sk-meta-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-navy);
}

.sk-note-box {
  background: #f7f9fc;
  border: 1px solid var(--sk-border);
  border-left: 4px solid var(--sk-orange);
  border-radius: var(--sk-control-radius);
  padding: 20px 22px;
  margin-bottom: auto;
}

.sk-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sk-note-list li {
  font-size: 13.5px;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.sk-note-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sk-muted);
}

.sk-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sk-note-list li strong {
  color: var(--sk-navy);
  font-weight: 600;
}

.sk-os-picker {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.sk-os-btn {
  background: #fff;
  border: 1px solid var(--sk-border);
  color: var(--sk-navy);
  min-width: 140px;
}

.sk-os-btn:hover {
  background: #f7f9fc;
  color: var(--sk-navy);
}

.sk-os-btn.is-active {
  background: var(--sk-orange);
  border-color: var(--sk-orange);
  color: #fff;
}

.sk-os-btn.is-active:hover {
  background: var(--sk-orange-hover);
  color: #fff;
}

.sk-install-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.sk-install-row {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f7f9fc;
  border: 1px solid var(--sk-border);
  padding: 12px 16px;
  border-radius: var(--sk-control-radius);
  margin-bottom: 0;
}

.sk-install-row strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sk-navy);
  margin-bottom: 2px;
}

.sk-install-row span {
  font-size: 12px;
  color: var(--sk-muted);
  line-height: 1.4;
}

.sk-install-visual {
  width: 60px;
  height: 44px;
  border: 1px solid var(--sk-border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.sk-visual-download {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdeceb;
  color: var(--sk-orange);
  font-size: 14px;
  font-weight: 700;
}

.sk-visual-popup {
  width: 46px;
  height: 28px;
  background: var(--sk-navy);
  border-radius: 3px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.sk-visual-line {
  height: 2px;
  background: #64748b;
  border-radius: 1px;
}

.sk-visual-line--short {
  width: 40%;
  background: var(--sk-orange);
}

.sk-visual-run {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--sk-orange);
  color: var(--sk-orange);
  padding: 2px 5px;
  border-radius: 2px;
  background: #ffffff;
}

.sk-guide-link {
  font-size: 13px;
  color: var(--sk-muted);
  margin-top: 16px;
}

.sk-guide-link a {
  color: var(--sk-orange);
  font-weight: 600;
  text-decoration: none;
}

.sk-guide-link a:hover {
  text-decoration: underline;
}

.sk-install-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sk-orange);
  letter-spacing: 0.5px;
}

.sk-prelaunch-left[hidden] {
  display: none !important;
}

.sk-prelaunch-left[data-left="setup"] .sk-logo--brand {
  width: 110px;
  height: auto;
  margin-bottom: 42px;
}

.sk-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sk-orange);
  margin-bottom: 10px;
}

.sk-os-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-navy);
  margin-bottom: 12px;
}

.sk-os-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.sk-os-card {
  border: 1px solid var(--sk-border);
  background: #fff;
  border-radius: 8px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--sk-navy);
  font-weight: 700;
  font-size: 14px;
}

.sk-os-card:hover,
.sk-os-card.is-active {
  border-color: var(--sk-orange);
  box-shadow: 0 4px 14px rgba(240, 68, 29, 0.1);
}

.sk-os-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: #f7f9fc;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sk-os-card small {
  display: block;
  color: var(--sk-muted);
  font-weight: 500;
  font-size: 11px;
  margin-top: 2px;
}

.sk-requirement {
  margin-bottom: 14px;
  padding: 9px 12px;
  border: 1px solid var(--sk-border);
  border-radius: 6px;
  background: #fafafa;
  color: var(--sk-muted);
  font-size: 12.5px;
}

.sk-requirement strong {
  color: var(--sk-navy);
}

.sk-num-steps {
  display: grid;
  gap: 12px;
}

.sk-num-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  background: #f7f9fc;
  border: 1px solid var(--sk-border);
  border-radius: 8px;
  padding: 14px;
}

.sk-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fdeceb;
  color: var(--sk-orange);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.sk-num-step h3 {
  font-size: 14px;
  color: var(--sk-navy);
  margin: 0 0 4px;
}

.sk-num-step p {
  color: var(--sk-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.sk-guide-cta {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d9e5f0;
  border-radius: 8px;
  background: #f8fbfe;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.sk-guide-cta strong {
  display: block;
  color: var(--sk-navy);
  font-size: 13.5px;
  margin-bottom: 3px;
}

.sk-guide-cta span {
  color: var(--sk-muted);
  font-size: 12px;
}

.sk-guide-cta a {
  background: var(--sk-orange);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.sk-guide-cta a:hover {
  background: var(--sk-orange-hover);
  color: #fff;
}

.sk-download-status {
  margin-top: 10px;
  color: #16855b;
  font-size: 12px;
  min-height: 18px;
}

/* SEB installation guide page */
.sk-seb-guide {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 24px 70px;
  background: #fff;
}

.sk-guide-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.sk-guide-hero .sk-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sk-guide-hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--sk-navy);
}

.sk-guide-hero p {
  margin: 0;
  color: var(--sk-muted);
  font-size: 17px;
}

.sk-guide-downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 650px;
  margin: 28px auto 0;
}

.sk-guide-downloads .sk-btn {
  min-height: 54px;
  height: auto;
}

.sk-guide-section {
  margin-top: 50px;
}

.sk-guide-section-head {
  margin-bottom: 20px;
}

.sk-guide-section-head h2 {
  margin: 0 0 5px;
  font-size: 27px;
  letter-spacing: -0.5px;
  color: var(--sk-navy);
}

.sk-guide-section-head p {
  margin: 0;
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-guide-section-head .sk-requirement {
  display: inline-block;
  margin: 12px 0 0;
}

.sk-guide-steps {
  display: grid;
  gap: 16px;
}

.sk-guide-step {
  border: 1px solid var(--sk-border);
  border-radius: 9px;
  padding: 20px;
  background: #fff;
}

.sk-guide-step-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sk-step-badge {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sk-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.sk-guide-step h3 {
  margin: 2px 0 4px;
  font-size: 17px;
  color: var(--sk-navy);
}

.sk-guide-step p {
  margin: 0;
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.sk-snapshot {
  margin: 0;
  border: 1px solid var(--sk-border);
  border-radius: 7px;
  overflow: hidden;
  background: #fafafa;
}

.sk-snapshot img {
  width: 78%;
  max-width: 520px;
  display: block;
  height: auto;
  margin: 0 auto;
}

.sk-snapshot figcaption {
  padding: 9px 12px;
  border-top: 1px solid var(--sk-border);
  background: #fff;
  color: #777;
  font-size: 12px;
}

.sk-mac-box {
  border: 1px solid var(--sk-border);
  border-radius: 9px;
  padding: 22px;
  background: #fff;
}

.sk-mac-box p {
  margin: 0 0 14px;
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-mac-box .sk-btn {
  height: auto;
  padding: 10px 15px;
  background: var(--sk-navy);
}

.sk-mac-box .sk-btn:hover {
  background: var(--sk-orange);
}

.sk-guide-finish {
  margin-top: 50px;
  padding: 24px;
  border-top: 2px solid var(--sk-orange);
  background: #fafafa;
  text-align: center;
}

.sk-guide-finish h2 {
  font-size: 22px;
  margin: 0 0 7px;
  color: var(--sk-navy);
}

.sk-guide-finish p {
  margin: 0;
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-guide-help {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.sk-guide-help a {
  color: var(--sk-orange);
  font-weight: 700;
  text-decoration: none;
}

.sk-guide-help a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sk-topbar {
    padding: 0 18px;
  }
  .sk-user-email {
    display: none;
  }
  .sk-auth-card {
    padding: 34px 24px 30px;
  }
  .sk-prelaunch-card {
    grid-template-columns: 1fr;
  }
  .sk-prelaunch-left {
    border-right: none;
    border-bottom: 1px solid var(--sk-border);
  }
  .sk-table thead {
    display: none;
  }
  .sk-exam-row,
  .sk-exam-row td {
    display: block;
  }
  .sk-action {
    text-align: left;
  }
  .sk-seb-guide {
    padding: 42px 18px 55px;
  }
  .sk-guide-hero h1 {
    font-size: 34px;
  }
  .sk-guide-hero p {
    font-size: 15px;
  }
  .sk-guide-downloads,
  .sk-os-cards,
  .sk-image-pair {
    grid-template-columns: 1fr;
  }
  .sk-guide-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .sk-guide-cta a {
    width: 100%;
    text-align: center;
  }
  .sk-snapshot img {
    width: 100%;
  }
}

/* Terms & Conditions acceptance (login / mock / invite) */
.sk-ui .sk-tnc {
  margin: 0 0 16px;
}
.sk-ui .sk-tnc-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #444;
  font-weight: 400;
  cursor: pointer;
}
.sk-ui .sk-tnc-input {
  margin: 3px 0 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.sk-ui .sk-tnc-label a {
  color: #1a73e8;
  text-decoration: underline;
}
