:root {
  color-scheme: dark;
  --glass: rgba(12, 18, 28, 0.72);
  --glass-strong: rgba(10, 15, 24, 0.9);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f7fbff;
  --muted: #b9c7d9;
  --accent: #2dc6c8;
  --accent-2: #f2a540;
  --danger: #f16d64;
  --ok: #42da95;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--text);
  background: #111a26;
}

.credential-save-bridge,
.credential-save-frame {
  position: fixed;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.login-screen {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.72), rgba(4, 7, 12, 0.25)),
    url("assets/wallpaper.png") center / cover no-repeat;
}

.login-screen.is-hidden {
  display: none;
}

.login-card.is-hidden {
  display: none;
}

.login-card {
  display: grid;
  gap: 16px;
  width: min(420px, calc(100vw - 40px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #f7fbff;
  background: rgba(12, 18, 28, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.login-mark {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  gap: 7px;
  width: 48px;
  height: 48px;
  place-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.login-mark span {
  border-radius: 3px;
  background: #e8f2ff;
}

.login-card h1 {
  margin: 0;
  font-size: 1.8rem;
}

.login-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.login-field {
  display: grid;
  gap: 7px;
}

.login-field span {
  color: #d8e4f2;
  font-size: 0.86rem;
  font-weight: 700;
}

.login-field input {
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: 0;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.12);
}

.login-field input:focus {
  border-color: rgba(45, 198, 200, 0.72);
  box-shadow: 0 0 0 3px rgba(45, 198, 200, 0.18);
}

.login-error {
  min-height: 20px;
  color: #ffb4ad;
  font-weight: 700;
}

.login-submit {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #06333b;
  background: linear-gradient(135deg, #5be2dc, #7fb3ff);
  cursor: pointer;
  font-weight: 900;
}

.login-hint {
  font-size: 0.84rem;
}

.password-generate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.password-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8e4f2;
  font-weight: 700;
}

.password-rules {
  margin: 0;
  color: #60778c;
  font-size: 0.86rem;
  line-height: 1.45;
}

.login-card .password-rules {
  color: #c7d4e4;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.desktop {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.45), rgba(4, 7, 12, 0.02) 45%, rgba(6, 14, 22, 0.28)),
    url("assets/wallpaper.png") center / cover no-repeat;
}

.desktop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 21rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 26%, rgba(0, 0, 0, 0.28));
}

.topbar,
.launcher-panel,
.app-window {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  position: absolute;
  z-index: 50;
  top: 14px;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: 48px minmax(150px, 230px) minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--glass);
}

.launcher-button,
.quick-actions button,
.window-control {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.launcher-button:hover,
.quick-actions button:hover,
.window-control:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.launcher-button {
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 5px;
}

.launcher-button span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #e8f2ff;
}

.brand {
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.search-shell span {
  color: #d4e2f4;
  font-size: 1.4rem;
  line-height: 1;
}

.search-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-shell input::placeholder {
  color: #c7d4e4;
}

.quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.quick-actions button {
  font-size: 1.1rem;
}

.quick-actions .topbar-icon,
.quick-actions .user-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.quick-actions .topbar-icon::after,
.quick-actions .user-button::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.icon-info,
.icon-gear,
.icon-search {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #dce7f4;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.icon-info {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
}

.icon-gear {
  font-size: 1.8rem;
}

.icon-search {
  font-size: 1.9rem;
}

.user-button {
  position: relative;
}

.user-glyph {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
}

.user-head {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #dce7f4;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.user-body {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 16px;
  border-radius: 10px 10px 5px 5px;
  background: #dce7f4;
  clip-path: polygon(50% 0, 78% 15%, 94% 48%, 100% 100%, 0 100%, 6% 48%, 22% 15%);
  box-shadow: inset 0 -4px 0 rgba(110, 132, 154, 0.18);
}

.topbar-apps {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar-apps::-webkit-scrollbar {
  display: none;
}

.search-panel {
  position: absolute;
  z-index: 90;
  top: 82px;
  right: 14px;
  width: min(420px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 18, 28, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.search-panel .search-shell {
  width: 100%;
}

.user-menu {
  position: absolute;
  z-index: 95;
  top: 82px;
  right: 78px;
  width: 250px;
  overflow: visible;
  border: 1px solid rgba(28, 45, 64, 0.18);
  border-radius: 4px;
  color: #1b2b3c;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.user-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 74px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -1px -1px 0 rgba(28, 45, 64, 0.08);
}

.user-menu strong {
  position: relative;
  display: block;
  padding: 14px 16px 13px;
  border-bottom: 1px solid #dbe3eb;
  text-align: center;
}

.user-menu button {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  color: #25384b;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
}

.user-menu button:hover,
.user-menu button.is-highlighted {
  background: #e8eef4;
}

.user-menu button span {
  display: grid;
  place-items: center;
  color: #7b8895;
  font-weight: 800;
}

.user-menu button:last-child {
  border-bottom: 0;
}

.launcher-panel {
  position: absolute;
  z-index: 80;
  top: 82px;
  left: 14px;
  width: min(520px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 150px));
  overflow: auto;
  padding: 16px;
  border-radius: 8px;
  background: rgba(13, 20, 31, 0.88);
}

.launcher-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.launcher-head span {
  color: var(--muted);
  font-size: 0.84rem;
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 12px;
}

.launcher-tile,
.desktop-icon {
  border: 0;
  cursor: pointer;
}

.launcher-tile {
  display: grid;
  grid-template-rows: 52px auto;
  gap: 8px;
  min-height: 112px;
  padding: 12px 8px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.launcher-tile:hover,
.desktop-icon:hover {
  background: rgba(255, 255, 255, 0.13);
}

.desktop-icons {
  position: absolute;
  z-index: 5;
  top: 104px;
  left: 28px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, 118px);
  grid-auto-columns: 120px;
  gap: 22px 22px;
  max-width: calc(100vw - 56px);
  max-height: calc(100vh - 130px);
}

.desktop-icon {
  display: grid;
  grid-template-rows: 68px minmax(32px, auto);
  place-items: center;
  width: 118px;
  min-height: 112px;
  padding: 8px 7px;
  border-radius: 8px;
  color: white;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.desktop-icon strong,
.launcher-tile strong {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.91rem;
  line-height: 1.18;
}

.module-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 22px rgba(0, 0, 0, 0.26);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}

.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.module-icon::before {
  width: 18px;
  height: 18px;
  right: 7px;
  bottom: 7px;
}

.module-icon::after {
  width: 28px;
  height: 5px;
  left: 10px;
  top: 12px;
}

.window-layer {
  position: absolute;
  z-index: 20;
  inset: 92px 18px 18px 18px;
  pointer-events: none;
}

.app-window {
  position: absolute;
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr);
  min-width: min(320px, calc(100vw - 36px));
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.94);
  color: #182433;
  pointer-events: auto;
}

.app-window.is-minimized {
  display: none;
}

.window-titlebar {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 12px;
  border-bottom: 1px solid rgba(31, 49, 72, 0.14);
  background: rgba(255, 255, 255, 0.82);
  cursor: move;
  user-select: none;
}

.window-titlebar .module-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 0.72rem;
}

.window-titlebar .module-icon::before,
.window-titlebar .module-icon::after {
  display: none;
}

.window-titlebar strong {
  overflow: hidden;
  color: #132235;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-control {
  width: 30px;
  height: 30px;
  color: #1d2c3d;
  background: rgba(19, 35, 53, 0.08);
}

.window-control.close:hover {
  color: white;
  background: var(--danger);
}

.window-body {
  overflow: auto;
  padding: 18px;
}

.window-body h2 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  letter-spacing: 0;
}

.window-body p {
  margin: 0;
  color: #496176;
  line-height: 1.5;
}

.settings-shell {
  display: grid;
  gap: 16px;
}

.settings-tabs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.settings-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 49, 72, 0.14);
  border-radius: 8px;
  color: #344b62;
  background: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

.settings-tab.is-active {
  color: #0e4450;
  border-color: rgba(45, 198, 200, 0.42);
  background: #eafafb;
}

.settings-panel {
  display: none;
}

.settings-panel.is-active {
  display: block;
}

.settings-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.settings-form .full {
  grid-column: 1 / -1;
}

.form-field span {
  color: #435a70;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field input,
.form-field select {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(31, 49, 72, 0.16);
  border-radius: 8px;
  outline: 0;
  color: #182433;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(45, 198, 200, 0.72);
  box-shadow: 0 0 0 3px rgba(45, 198, 200, 0.14);
}

.form-field input[readonly],
.form-field input:disabled,
.form-field select:disabled {
  color: #64798d;
  background: #eef3f7;
  cursor: default;
}

.profile-password-block {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(31, 49, 72, 0.12);
  border-radius: 8px;
  background: #f6f9fc;
}

.profile-password-block strong {
  color: #182433;
}

.profile-password-block span {
  color: #60778c;
  font-size: 0.86rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.form-message {
  min-height: 22px;
  color: #4d657b;
  font-weight: 700;
}

.form-message[data-type="success"] {
  color: #13795b;
}

.form-message[data-type="error"] {
  color: #b42318;
}

.primary-action,
.secondary-action {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.primary-action {
  color: #06333b;
  background: linear-gradient(135deg, #5be2dc, #7fb3ff);
}

.secondary-action {
  color: #345069;
  background: #edf3f8;
}

.users-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  min-width: 1260px;
}

.login-log-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  min-width: 940px;
}

.settings-panel[data-settings-panel="users"],
.settings-panel[data-settings-panel="login"] {
  overflow-x: auto;
  padding-bottom: 4px;
}

.users-row,
.login-log-row {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(31, 49, 72, 0.12);
  border-radius: 8px;
  background: #fff;
}

.users-row {
  grid-template-columns: 110px 155px 210px 110px 120px 150px 135px 150px 120px;
}

.login-log-row {
  grid-template-columns: 110px 170px 160px 160px 140px 130px;
}

.users-row.header,
.login-log-row.header {
  color: #597086;
  background: #f3f7fb;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.users-empty {
  padding: 16px;
  border: 1px dashed rgba(31, 49, 72, 0.22);
  border-radius: 8px;
  color: #60778c;
  background: rgba(255, 255, 255, 0.72);
}

.system-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.system-info-card {
  padding: 14px;
  border: 1px solid rgba(31, 49, 72, 0.12);
  border-radius: 8px;
  background: #fff;
}

.system-info-card span {
  display: block;
  color: #61778c;
  font-size: 0.82rem;
}

.system-info-card strong {
  display: block;
  margin-top: 6px;
  color: #182433;
}

.window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-panel,
.file-row,
.setting-row {
  border: 1px solid rgba(31, 49, 72, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.metric-panel {
  padding: 14px;
}

.metric-panel span {
  color: #64798d;
  font-size: 0.82rem;
}

.metric-panel strong {
  display: block;
  margin-top: 8px;
  color: #14263a;
  font-size: 1.55rem;
}

.progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf4;
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #498ee8);
}

.file-list,
.settings-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.file-row,
.setting-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.file-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #12304a;
  background: #e8f4ff;
  font-weight: 800;
}

.row-title {
  display: block;
  overflow: hidden;
  color: #17283c;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-subtitle {
  display: block;
  margin-top: 2px;
  color: #60778c;
  font-size: 0.85rem;
}

.pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: #21435e;
  background: #eef6fb;
  font-size: 0.78rem;
  white-space: nowrap;
}

.warning-pill {
  color: #6d3d05;
  background: #fff3d6;
}

.table-action {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: #163448;
  background: #e8f4ff;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.row-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.danger-table-action {
  color: #7f1d1d;
  background: #fee2e2;
}

.compact-action {
  min-height: 42px;
  padding-inline: 12px;
  white-space: nowrap;
}

.task-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 210px;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.task-button.active {
  background: rgba(45, 198, 200, 0.34);
}

.task-button span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#clock {
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 8px;
  color: #e7f0fb;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 46px minmax(0, 1fr) auto;
  }

  .topbar-apps {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .quick-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .desktop-icons {
    top: 184px;
    grid-template-rows: repeat(4, 112px);
    grid-auto-columns: 106px;
    gap: 14px;
  }

  .desktop-icon {
    width: 104px;
  }

  .window-layer {
    inset: 176px 10px 12px 10px;
  }

  .app-window {
    width: calc(100vw - 20px) !important;
    height: calc(100vh - 250px) !important;
    left: 0 !important;
  }

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

  .settings-form,
  .system-info-grid {
    grid-template-columns: 1fr;
  }

  .users-row,
  .login-log-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .users-row.header,
  .login-log-row.header {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 8px;
    right: 8px;
    left: 8px;
  }

  .brand span {
    display: none;
  }

  .quick-actions {
    gap: 4px;
  }

  .quick-actions button {
    width: 38px;
    height: 38px;
  }

  .quick-actions .topbar-icon,
  .quick-actions .user-button {
    width: 38px;
    height: 38px;
  }

  .icon-info,
  .icon-gear,
  .user-glyph {
    transform: scale(0.82);
  }

  #clock {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .desktop-icons {
    left: 8px;
    max-width: calc(100vw - 16px);
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 104px;
    gap: 9px;
  }

  .desktop-icon {
    width: 100%;
    min-height: 100px;
    padding-inline: 3px;
  }

  .desktop-icon strong,
  .launcher-tile strong {
    font-size: 0.78rem;
  }

  .module-icon {
    width: 52px;
    height: 52px;
  }

  .launcher-panel {
    top: 170px;
    left: 8px;
    width: calc(100vw - 16px);
  }

  .search-panel {
    top: 170px;
    right: 8px;
    width: calc(100vw - 16px);
  }

  .user-menu {
    top: 170px;
    right: 8px;
  }

  .task-button span:last-child {
    display: none;
  }
}
