:root {
  --bg: #040611;
  --panel: rgba(10, 13, 27, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --text-muted: #99a6c7;
  --primary: #65f6ff;
  --primary-dark: #3cc4ff;
  --accent: #9c6bff;
  --success: #4ade80;
  --warning: #fbbf24;
  --error: #f87171;
}

* {
  box-sizing: border-box;
  font-family: "Noto Sans", "Inter", "Segoe UI", sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, #0f162f 0%, #05070f 55%, #03040a 100%);
  color: #fdfdff;
}

body {
  overflow-x: hidden;
}

#mask {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1000;
}

.portal-frame {
  position: relative;
  min-height: 100vh;
  padding: clamp(1.5rem, 3vw, 3.5rem);
  overflow: hidden;
}

.portal-frame > a:first-of-type {
  position: absolute;
  top: clamp(1.5rem, 3vw, 3.5rem);
  left: clamp(1.5rem, 3vw, 3.5rem);
  z-index: 2;
  display: inline-block;
  line-height: 0;
  padding: 0;
  margin: 0;
}

.nebula {
  position: absolute;
  width: clamp(260px, 45vw, 520px);
  height: clamp(260px, 45vw, 520px);
  filter: blur(140px);
  opacity: 0.6;
  z-index: 0;
}

.nebula--a {
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(70, 205, 255, 0.65) 0%, rgba(4, 6, 17, 0) 70%);
}

.nebula--b {
  bottom: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(156, 107, 255, 0.65) 0%, rgba(4, 6, 17, 0) 70%);
}

.portal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - clamp(3rem, 6vw, 7rem));
}

.portal-grid--centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portal-grid--centered .auth-panel {
  max-width: 420px;
  width: 100%;
}

/* Password requirements list */
.password-requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.password-requirements li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.password-requirements li.valid {
  color: var(--success);
}

.password-requirements .check-icon {
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.brand-logo {
  cursor: pointer;
  width: clamp(140px, 18vw, 220px);
  display: block;
  margin: 0;
  padding: 0;
}

.hero-panel > a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-bottom: 2.15rem;
}

.hero-panel > a:hover {
  opacity: 0.85;
}

.hero-chip {
  align-self: flex-start;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.ghost-button {
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.hero-avatars {
  display: inline-flex;
  gap: 0.6rem;
}

.avatar-pill {
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-panel {
  display: flex;
  justify-content: center;
  align-self: center;
}

.auth-card {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.card-head {
  margin-bottom: 1.5rem;
}

.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--primary);
  margin: 0 0 0.4rem 0;
}

.card-head h2 {
  margin: 0;
  font-size: 2rem;
}

.card-subhead {
  margin: 0.25rem 0 0 0;
  color: var(--text-muted);
}

.alert {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert--info {
  background: rgba(101, 246, 255, 0.08);
  border: 1px solid rgba(101, 246, 255, 0.35);
}

.alert--warning {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.alert--critical {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.alert-close {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
}

.status-banner--error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.status-banner--warning {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.status-banner--success {
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.input-shell img.icon {
  width: 18px;
  opacity: 0.75;
}

.input-shell input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group.error .input-shell {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(248, 113, 113, 0.08);
}

.form-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--error);
}

.btn-primary {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 0.95rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  color: #050608;
  box-shadow: 0 18px 38px rgba(101, 246, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 45px rgba(101, 246, 255, 0.45);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.link-cluster {
  margin: 1.1rem 0;
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.btn-link {
  border: none;
  background: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

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

.support-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.support-note a {
  color: inherit;
}

@media (max-width: 960px){
  .portal-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    text-align: center;
    align-items: center;
  }
  .hero-chip {
    align-self: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .feature-stack {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px){
  .portal-frame {
    padding: 1.5rem 1rem 2.5rem;
  }
  .auth-card {
    padding: 1.5rem;
  }
}

.list-view {
  min-height: 100vh;
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(135deg, #050912 0%, #0e1f3f 60%, #122b52 100%);
  color: #f4f6ff;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.sr-only-textarea {
  position: fixed;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  color: transparent;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.list-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.list-hero.modern {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  padding: 1.5rem 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-left {
  flex: 1 1 380px;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.list-hero__logo {
  width: clamp(120px, 14vw, 180px);
}

.list-hero__eyebrow {
  padding-left: 0.1rem;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.list-hero h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #ffffff;
}

.list-hero__tagline {
  padding-left: 0.1rem;
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero-right {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
}

.hero-stats--stacked {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

@media (min-width: 900px) {
  .hero-stats--stacked {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .hero-stats--stacked .stat-institute {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-stats--stacked .stat-customer {
    grid-column: 2;
    grid-row: 1;
  }
  .hero-stats--stacked .stat-projects {
    grid-column: 1;
    grid-row: 2;
  }
  .hero-stats--stacked .hero-stat--session {
    grid-column: 2;
    grid-row: 2;
  }
}

.hero-stat {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat p {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-stat strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: right;
}

.hero-stat--session strong {
  font-size: 0.95rem;
  word-break: break-word;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1027;
  background: #f4f6ff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:not(:disabled):hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(94, 252, 255, 0.15);
  color: #5efcff;
  border: 1px solid rgba(94, 252, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: #f4f6ff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-inline {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f6ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.3rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.btn-inline--copied {
  background: rgba(94, 252, 255, 0.2);
  color: #5efcff;
  border-color: rgba(94, 252, 255, 0.5);
}

.btn-text {
  background: transparent;
  color: #9db5ff;
  border: none;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
}

.customer-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem;
  margin: 1.5rem auto 1rem;
  max-width: 960px;
}

.summary-card {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-card .label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.summary-card .value {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.project-help {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(244, 246, 255, 0.8);
}

.project-help span {
  color: #5efcff;
}

.projects-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card--empty h3 {
  margin: 0 0 0.5rem;
}

.project-card {
  padding: 1.8rem;
  border-radius: 26px;
  background: rgba(3, 13, 31, 0.9);
  border: 1px solid rgba(94, 252, 255, 0.15);
  box-shadow: 0 30px 60px rgba(3, 10, 30, 0.4);
}

.project-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.project-card__head h2 {
  margin: 0.2rem 0;
  color: #5efcff;
}

.project-card__head .sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.project-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.project-table {
  overflow-x: auto;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.list-table th,
.list-table td {
  padding: 0.55rem 0.6rem;
  text-align: left;
}

.list-table th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.list-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.list-table td {
  color: #f4f6ff;
  font-size: 0.9rem;
}

.list-table td.SampleID {
  font-weight: 600;
  color: #5efcff;
}

.list-table td.actions {
  text-align: right;
}

.list-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.list-table tr.filelist td {
  background: rgba(8, 20, 44, 0.9);
  padding: 0;
}

.filelist-panel {
  padding: 1rem 1.25rem;
}

.filelist-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.filelist-panel li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.file-name {
  font-weight: 600;
}

.file-size {
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.file-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon-copy {
  width: 1rem;
  height: 1rem;
}

.icon-copy path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.3px;
  stroke-linejoin: round;
}

.btn-inline--copied .icon-copy path {
  stroke: #5efcff;
}

.filelist-panel .loading {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.project-table.no-data {
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.wget-block {
  /* margin-top: 1rem; */
  /* border-top: 1px dashed rgba(94, 252, 255, 0.3); */
  /* padding-top: 1rem; */
  border-bottom: 1px dashed rgba(94, 252, 255, 0.3);
  padding-bottom: 1rem;
}

.wgetsbuffer {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #5efcff;
  border: 1px solid rgba(94, 252, 255, 0.3);
  padding: 0.75rem;
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  resize: vertical;
}

.wget-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

@media (max-width: 1024px) {
  .list-hero__actions {
    align-items: flex-start;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }
  .project-card__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .list-table td.actions {
    text-align: left;
  }
}

@media only screen and (max-width: 800px){
	.login > .title{left:0;width:100%;}
	.login > .title > * {text-align:center;}
	.maintop > .inner{display:none;}
	.login > .dialog_wrap > .dialog{width:100%;margin:0;}
	.login > .dialog_wrap > .dialog > .edge{display:none;}
}

@media only screen and (max-width: 600px){
	.login > .title > h1{font-size:32px;}
	.login > .title > h2{display:none;}
}

@media (max-width: 1024px){
	.login-shell{
		flex-direction:column;
		align-items:stretch;
	}
	.brand-panel{
		text-align:center;
		align-items:center;
	}
	.brand-pill{
		align-self:center;
	}
	.brand-highlights{
		grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
	}
}

@media (max-width: 640px){
	.login{
		padding:1.5rem 1rem;
	}
	.form-card{
		padding:1.5rem;
		border-radius:22px;
	}
}

.new-look-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5, 7, 15, 0.85);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 1.5rem;
}

.new-look-modal {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 30px;
	padding: 0;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(18px);
	max-width: 520px;
	width: 100%;
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.new-look-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.75rem 2rem;
	border-bottom: 1px solid var(--border);
}

.new-look-modal__header h2 {
	margin: 0;
	font-size: 1.75rem;
	color: var(--primary);
}

.new-look-modal__close {
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-size: 1.8rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease;
}

.new-look-modal__close:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.new-look-modal__body {
	padding: 2rem;
}

.new-look-modal__body p {
	margin: 0 0 1.25rem 0;
	color: #f4f6ff;
	font-size: 1rem;
	line-height: 1.6;
}

.new-look-modal__body ul {
	margin: 0;
	padding-left: 1.5rem;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

.new-look-modal__body li {
	margin-bottom: 0.75rem;
}

.new-look-modal__body li:last-child {
	margin-bottom: 0;
}

.new-look-modal__body strong {
	color: var(--primary);
	font-weight: 600;
}

.new-look-modal__footer {
	padding: 1.5rem 2rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.new-look-modal__footer .btn {
	min-width: 100px;
}

.onboarding-progress {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
}

.onboarding-buttons {
	display: flex;
	gap: 0.75rem;
}

.onboarding-buttons .btn-secondary {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-muted);
}

.onboarding-buttons .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

@media (max-width: 640px) {
	.new-look-modal {
		max-width: 100%;
		border-radius: 24px;
	}
	
	.new-look-modal__header {
		padding: 1.5rem 1.5rem;
	}
	
	.new-look-modal__header h2 {
		font-size: 1.5rem;
	}
	
	.new-look-modal__body {
		padding: 1.5rem;
	}
	
	.new-look-modal__footer {
		padding: 1.25rem 1.5rem 1.5rem;
	}
}
