:root {
  --desktop-blue: #4e84b3;
  --desktop-blue-deep: #3e6f9c;
  --platinum-0: #ffffff;
  --platinum-1: #f5f5f5;
  --platinum-2: #dddddd;
  --platinum-3: #c7c7c7;
  --platinum-4: #9b9b9b;
  --graphite: #2f2f2f;
  --ink: #151515;
  --ink-soft: #555555;
  --accent: #1e5bbd;
  --accent-deep: #0d3f90;
  --window: #f1f1f1;
  --paper: #fffdf7;
  --paper-line: rgba(0, 0, 0, 0.08);
  --bevel-out: inset 1px 1px 0 var(--platinum-0), inset -1px -1px 0 #8c8c8c;
  --bevel-in: inset 1px 1px 0 #8c8c8c, inset -1px -1px 0 var(--platinum-0);
  --shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
  --success: #1d6f3f;
  --surface-1: #efefef;
  --surface-2: #cfcfcf;
  --sidebar-surface-1: #ececec;
  --sidebar-surface-2: #dfdfdf;
  --quote-surface-1: #f7f7f7;
  --quote-surface-2: #ececec;
  --card-bg: rgba(255, 253, 249, 0.96);
  --overlay-bg: rgba(15, 47, 77, 0.22);
  --menu-text: #151515;
  --desktop-label-bg: #1e5bbd;
}

:root[data-theme="dark"] {
  --desktop-blue: #173550;
  --desktop-blue-deep: #0f2234;
  --platinum-0: #4c5967;
  --platinum-1: #2f3944;
  --platinum-2: #25303a;
  --platinum-3: #1c242c;
  --platinum-4: #131920;
  --graphite: #edf2f7;
  --ink: #eef4fa;
  --ink-soft: #afbcc9;
  --accent: #7db7ff;
  --accent-deep: #c5e0ff;
  --window: #1b242d;
  --paper: #202a33;
  --paper-line: rgba(255, 255, 255, 0.06);
  --bevel-out: inset 1px 1px 0 rgba(255, 255, 255, 0.12), inset -1px -1px 0 rgba(0, 0, 0, 0.55);
  --bevel-in: inset 1px 1px 0 rgba(0, 0, 0, 0.52), inset -1px -1px 0 rgba(255, 255, 255, 0.08);
  --shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  --success: #67d58f;
  --surface-1: #31404d;
  --surface-2: #212d38;
  --sidebar-surface-1: #293742;
  --sidebar-surface-2: #202c35;
  --quote-surface-1: #2f3c47;
  --quote-surface-2: #25313a;
  --card-bg: rgba(30, 40, 49, 0.96);
  --overlay-bg: rgba(3, 8, 14, 0.42);
  --menu-text: #eef4fa;
  --desktop-label-bg: #365d89;
}

/* Wallpapers */
html[data-wallpaper="amethyst"],
html[data-wallpaper="amethyst"] body {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #6b4a8a, #452d6b);
  background-size: 6px 6px, 6px 6px, 100% 100%;
}

html[data-wallpaper="seafoam"],
html[data-wallpaper="seafoam"] body {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #3a8a7a, #1f6458);
  background-size: 5px 5px, 100% 100%;
}

html[data-wallpaper="fern"],
html[data-wallpaper="fern"] body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #4a7a3a, #2d5c1f);
  background-size: 6px 6px, 6px 6px, 100% 100%;
}

html[data-wallpaper="slate"],
html[data-wallpaper="slate"] body {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(180deg, #5a5e66, #3a3d44);
  background-size: 100% 100%, 100% 100%;
}

html[data-wallpaper="sunset"],
html[data-wallpaper="sunset"] body {
  background:
    linear-gradient(90deg, rgba(255, 214, 153, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 214, 153, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, #ffb36b 0%, #e36a63 48%, #6d4aa2 100%);
  background-size: 14px 14px, 14px 14px, 100% 100%;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, var(--desktop-blue), var(--desktop-blue-deep));
  background-size: 4px 4px, 4px 4px, 100% 100%;
}

body {
  min-height: 100vh;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.desktop {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 10px;
  position: relative;
}

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  background: var(--platinum-2);
  border: 1px solid #7c7c7c;
  box-shadow: var(--bevel-out);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--menu-text);
  position: relative;
  z-index: 20;
}

.menu-brand,
.menu-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.menu-brand {
  gap: 2px;
}

.menu-bar-button {
  padding: 3px 8px;
  font-size: 0.78rem;
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown-trigger {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  padding: 2px 6px;
  cursor: default;
}

.menu-dropdown-trigger:hover,
.menu-dropdown-trigger.is-open {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-deep);
}

.menu-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 2px;
  min-width: 180px;
  padding: 4px 0;
  background: var(--platinum-2);
  border: 1px solid #7c7c7c;
  border-radius: 4px;
  box-shadow: var(--bevel-out), 2px 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 50;
  font-weight: 400;
}

.menu-dropdown-item {
  display: block;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--menu-text);
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
  padding: 4px 14px;
  cursor: default;
}

button.menu-dropdown-item:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
}

button.menu-dropdown-item:disabled {
  color: var(--ink-soft);
}

p.menu-dropdown-item {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.menu-apple-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-app-trigger {
  min-width: 0;
  padding-inline: 8px;
}

.about-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--overlay-bg);
  z-index: 40;
}

.screensaver-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 120;
}

.screensaver-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.screensaver-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  transform: translateX(-50%);
  animation: screensaver-hint-fade 5.8s ease forwards;
  pointer-events: none;
}

body.screensaver-active,
body.screensaver-active * {
  cursor: none !important;
}

@keyframes screensaver-hint-fade {
  0%,
  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.about-window {
  width: 340px;
  overflow: hidden;
  background: var(--window);
  border: 1px solid #7c7c7c;
  border-radius: 6px;
  box-shadow: var(--bevel-out), var(--shadow);
}

.about-window .traffic-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #8d1717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(133, 10, 10, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.about-window .traffic-light-close {
  background:
    radial-gradient(circle at 35% 30%, #ffb5b5 0 22%, #ff6666 23%, #dd2d2d 62%, #a80f0f 100%);
}

.about-window .traffic-light-close:hover {
  filter: brightness(1.04);
}

.about-window .traffic-light-close:active {
  box-shadow:
    inset 0 1px 2px rgba(111, 8, 8, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(1px, 1px);
}

.about-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 24px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-1), var(--window));
}

.about-body h1 {
  margin: 0;
  font-size: 1.5rem;
}

.about-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.brand-apple.about-apple {
  width: 104px;
  height: 104px;
}

.about-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.about-credit a:hover {
  text-decoration: underline;
}

#menuDropdownPanel {
  left: auto;
  right: 0;
}

.menu-dropdown-divider {
  border: 0;
  border-top: 1px solid #8e8e8e;
  margin: 4px 10px;
}

.brand-apple {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 auto;
  background: center / contain no-repeat url("./assets/branding/atmos-strawberry-logo.png");
}

.workspace {
  flex: 1;
  min-height: 760px;
}

.desktop-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  width: 110px;
  position: absolute;
  right: 8px;
  top: 46px;
  z-index: 0;
}

.desktop-icon,
.dock-app {
  appearance: none;
  border: 0;
  background: transparent;
}

.desktop-icon {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
  padding: 4px 2px;
  cursor: default;
}

.desktop-icon.drag-over {
  border-top: 2px solid rgba(255, 255, 255, 0.7);
}

.desktop-icon.dragging {
  opacity: 0.4;
}

.desktop-icon-art,
.dock-app-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-icon-art {
  width: 74px;
  height: 74px;
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.45));
}

.desktop-icon-label {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 1px 4px;
}

.desktop-icon:hover .desktop-icon-label,
.desktop-icon:focus-visible .desktop-icon-label {
  background: var(--desktop-label-bg);
  outline: 1px dotted rgba(255, 255, 255, 0.85);
}

.news-feed-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.news-feed-icon-desktop {
  width: 72px;
  height: 72px;
}

.buddy-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.buddy-icon-image-desktop {
  width: 72px;
  height: 72px;
}

.buddy-icon-image-mini {
  width: 24px;
  height: 24px;
}

.window {
  border: 1px solid #7c7c7c;
  box-shadow: var(--shadow);
  border-radius: 6px;
  box-shadow: var(--bevel-out), var(--shadow);
}

.app-window {
  position: absolute;
  z-index: 2;
}

#newsWindow {
  width: min(1100px, calc(100vw - 180px));
  min-width: 760px;
  height: 720px;
  min-height: 560px;
  max-width: 100%;
  resize: both;
  overflow: auto;
}

#prefsWindow {
  width: 420px;
  height: 560px;
  min-height: 0;
  max-height: min(560px, calc(100vh - 96px));
  overflow: hidden;
}

#buddiesWindow {
  width: 320px;
  min-width: 280px;
  height: 560px;
  min-height: 440px;
  max-width: 100%;
  resize: both;
  overflow: auto;
}

#buddiesWindow.is-expanded {
  width: min(980px, calc(100vw - 180px));
  min-width: 760px;
  height: 700px;
  min-height: 560px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.panel-header h1,
.feed-toolbar h2,
.sidebar-card h3,
.empty-state h3,
.session-card h2 {
  margin: 0;
  font-family: Geneva, Verdana, sans-serif;
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.secondary-line,
.helper-copy,
.sidebar-copy,
.status-line {
  color: var(--ink-soft);
}

.login-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.login-form label {
  display: grid;
  gap: 8px;
}

.login-form input {
  border: 1px solid #7e7e7e;
  border-radius: 4px;
  padding: 7px 8px;
  background: #fff;
  box-shadow: var(--bevel-in);
}

.primary-button,
.ghost-button {
  border-radius: 4px;
  padding: 6px 12px;
  border: 1px solid #656565;
  box-shadow: var(--bevel-out);
  transition: none;
  font-weight: 700;
}

.primary-button {
  background: linear-gradient(180deg, var(--platinum-1), var(--surface-2));
  color: var(--ink);
}

.ghost-button {
  background: linear-gradient(180deg, var(--platinum-1), var(--surface-1));
  color: var(--ink);
}

.primary-button:hover,
.ghost-button:hover,
.desktop-icon:hover,
.dock-app:hover {
  transform: none;
}

.primary-button:active,
.ghost-button:active,
.dock-app:active {
  box-shadow: var(--bevel-in);
  transform: translate(1px, 1px);
}

.primary-button:disabled,
.ghost-button:disabled {
  opacity: 0.58;
  cursor: default;
  box-shadow: var(--bevel-out);
  transform: none;
}

.session-card {
  margin-top: 18px;
  padding: 12px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #fbfbfb, #efefef),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 15px,
      var(--paper-line) 15px,
      var(--paper-line) 16px
    );
  border: 1px solid #8a8a8a;
  box-shadow: var(--bevel-in);
}

.login-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--overlay-bg);
  z-index: 30;
}

.login-window {
  width: min(560px, calc(100vw - 32px));
  background: var(--window);
}

.login-window-body {
  padding: 16px;
  background: var(--window);
}

.login-window .panel-header {
  margin: -16px -16px 0;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
  border-bottom: 1px solid #5d6975;
  box-shadow: var(--bevel-out);
}

.login-window .panel-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.window-chrome-spacer {
  width: 72px;
  height: 1px;
}

.window {
  overflow: hidden;
  background: var(--window);
  min-height: 680px;
}

.window-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 3px 8px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--platinum-2);
  border-bottom: 1px solid #8a8a8a;
  box-shadow: var(--bevel-out);
  cursor: grab;
  user-select: none;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-light {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #3a3a3a;
  padding: 0;
  box-shadow: var(--bevel-out);
}

.traffic-light.red {
  background: #cfcfcf;
}

.traffic-light.yellow {
  background: #cfcfcf;
}

.traffic-light.green {
  background: #cfcfcf;
}

.app-window .traffic-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #8d1717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(133, 10, 10, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.app-window .traffic-light-close {
  background:
    radial-gradient(circle at 35% 30%, #ffb5b5 0 22%, #ff6666 23%, #dd2d2d 62%, #a80f0f 100%);
}

.app-window .traffic-light-close:hover {
  filter: brightness(1.04);
}

.app-window .traffic-light-close:active {
  box-shadow:
    inset 0 1px 2px rgba(111, 8, 8, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(1px, 1px);
}

.window-chrome:active {
  cursor: grabbing;
}

.window-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.8rem;
}

.mini-icon {
  width: 24px;
  height: 24px;
}

.news-feed-icon-mini {
  width: 24px;
  height: 24px;
}

.window-body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 620px;
}

.window-sidebar {
  padding: 16px;
  background:
    linear-gradient(180deg, var(--sidebar-surface-1), var(--sidebar-surface-2)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      var(--paper-line) 22px,
      var(--paper-line) 23px
    );
  border-right: 1px solid #8e8e8e;
}

.sidebar-card + .sidebar-card {
  margin-top: 20px;
}

.feed-column {
  padding: 16px;
  background:
    linear-gradient(180deg, var(--paper), var(--window)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      var(--paper-line) 20px,
      var(--paper-line) 21px
    );
}

.feed-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
}

.feed-list {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.composer-card {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid #8e8e8e;
  box-shadow: var(--bevel-out);
}

.composer-field {
  display: grid;
  gap: 8px;
}

.composer-field textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  border: 1px solid #7e7e7e;
  border-radius: 4px;
  padding: 9px 10px;
  background: #fff;
  color: #151515;
  box-shadow: var(--bevel-in);
  line-height: 1.45;
}

:root[data-theme="dark"] .composer-field textarea {
  background: #101820;
  color: var(--ink);
}

.composer-field textarea:disabled {
  opacity: 0.72;
  cursor: default;
}



.story-quote-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #8e8e8e;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--quote-surface-1), var(--quote-surface-2));
  box-shadow: var(--bevel-out);
  color: inherit;
  text-decoration: none;
}

.prefs-icon-image {
  display: block;
  object-fit: contain;
  image-rendering: pixelated;
}

.prefs-icon-image-desktop {
  width: 72px;
  height: 72px;
}

.prefs-icon-image-mini {
  width: 24px;
  height: 24px;
}


.story-quote-muted {
  color: var(--ink-soft);
}

.story-quote-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.story-quote-copy {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.45;
}

.story-link {
  text-decoration: none;
  font-weight: 700;
}

.story-link:hover {
  color: var(--accent-deep);
}

.status-line {
  margin-top: 14px;
  font-weight: 700;
}

.dock {
  display: flex;
  justify-content: center;
  padding: 0 0 2px;
}

.dock-app {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 6px;
  background: linear-gradient(180deg, #efefef, #cfcfcf);
  border: 1px solid #707070;
  box-shadow:
    var(--bevel-out),
    2px 2px 0 rgba(0, 0, 0, 0.18);
}

.dock-app-icon {
  width: 100%;
  height: 100%;
  padding: 9px;
}

.news-feed-icon-dock {
  width: 100%;
  height: 100%;
}

.dock-app-indicator {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: transparent;
  transform: translateX(-50%);
}

.dock-app-indicator.active {
  background: var(--success);
}


@media (max-width: 1100px) {
  .workspace {
    min-height: 720px;
  }

  .desktop-icons {
    width: 92px;
    right: 4px;
  }

  #newsWindow {
    width: min(100%, calc(100vw - 120px));
    min-width: 0;
    height: 680px;
  }

  #prefsWindow,
  #skyrdleWindow {
    width: min(420px, 100%);
  }

  #buddiesWindow {
    width: min(100%, calc(100vw - 120px));
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .desktop {
    padding: 6px;
  }

  .workspace {
    min-height: 880px;
  }

  .desktop-icons {
    flex-direction: row;
    padding-top: 0;
    width: auto;
    position: static;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    border-right: 0;
    border-bottom: 1px solid #8e8e8e;
  }

  .app-window {
    left: 0 !important;
  }

  #newsWindow,
  #prefsWindow,
  #skyrdleWindow,
  #buddiesWindow {
    width: min(100%, calc(100vw - 24px));
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .panel-header,
  .feed-toolbar,
  .buddy-card-heading,
  .story-header,
  .window-chrome {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: initial;
  }

  .buddy-status-fields,
  .buddy-row {
    grid-template-columns: 1fr;
  }

  .buddy-toolbar-actions {
    justify-content: start;
  }

  .window-title {
    justify-content: start;
  }

  .story-embed {
    grid-template-columns: 1fr;
  }

  .menu-bar {
    gap: 6px;
    flex-direction: column;
    align-items: start;
  }

  .login-overlay {
    padding: 8px;
  }

  .login-window {
    width: 100%;
  }
}
