*, *::before, *::after {
  box-sizing: border-box;
}

html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: #008080;
}
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  padding: 2px 4px;
  gap: 4px;
  z-index: 9000;
  box-shadow: 0 -1px 0 #808080;
}

.taskbar-start-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  height: 32px;
  background-color: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.taskbar-start-btn:active,
.taskbar-start-btn.active {
  border-color: #808080 #ffffff #ffffff #808080;
}

.start-logo {
  font-size: 16px;
  line-height: 1;
}

.start-label {
  font-size: 13px;
}

.taskbar-divider {
  width: 2px;
  height: 28px;
  border-left: 1px solid #808080;
  border-right: 1px solid #ffffff;
  margin: 0 2px;
}

.taskbar-windows {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
}

.taskbar-window-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  height: 28px;
  min-width: 80px;
  max-width: 160px;
  background-color: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 11px;
  cursor: pointer;
  overflow: hidden;
}

.taskbar-window-btn.active {
  border-color: #808080 #ffffff #ffffff #808080;
  background-color: #b8b8b8;
}

.taskbar-window-btn:active {
  border-color: #808080 #ffffff #ffffff #808080;
}

.taskbar-window-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  image-rendering: pixelated;
}

.taskbar-window-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taskbar-tray {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background-color: #c0c0c0;
}

.taskbar-clock {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 11px;
  white-space: nowrap;
}
.ms-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: #c0c0c0;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', Arial, sans-serif;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}

/* ── difficulty bar ───────────────────────────────────── */
.ms-diffbar {
  display: flex;
  gap: 4px;
}

.ms-diffbtn {
  padding: 2px 10px;
  font-family: inherit;
  font-size: 11px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  cursor: pointer;
}

.ms-diffbtn:active,
.ms-diffbtn-active {
  border-color: #808080 #ffffff #ffffff #808080;
  background: #b8b8b8;
}

/* ── outer raised panel ───────────────────────────────── */
.ms-panel {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  background: #c0c0c0;
  border: 3px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
}

/* ── header ───────────────────────────────────────────── */
.ms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  gap: 8px;
}

/* LED display */
.ms-led {
  background: #000000;
  color: #ff0000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 2px 4px;
  min-width: 46px;
  text-align: right;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  line-height: 1;
  user-select: none;
}

/* smiley face reset button */
.ms-face {
  font-size: 20px;
  width: 34px;
  height: 34px;
  line-height: 1;
  background: #c0c0c0;
  border: 3px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ms-face:active {
  border-color: #808080 #ffffff #ffffff #808080;
}

/* ── board ────────────────────────────────────────────── */
.ms-board {
  display: inline-flex;
  flex-direction: column;
  border: 3px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  line-height: 0;
}

.ms-row {
  display: flex;
}

/* ── cells ────────────────────────────────────────────── */
.ms-cell {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  cursor: default;
  box-sizing: border-box;
  user-select: none;
  flex-shrink: 0;
}

/* unrevealed / flagged — raised */
.ms-cell.ms-up {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  cursor: pointer;
}

.ms-cell.ms-up:hover {
  background: #d0d0d0;
}

/* revealed — flat sunken */
.ms-cell.ms-revealed {
  background: #c0c0c0;
  border: 1px solid #808080;
  border-top-color: #808080;
  border-left-color: #808080;
}

/* clicked mine — red background */
.ms-cell.ms-hit {
  background: #ff0000;
  border: 1px solid #808080;
}

/* number */
.ms-num {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: bold;
}

/* flag emoji */
.ms-flag, .ms-mine {
  font-size: 10px;
}

/* wrong flag overlay */
.ms-no-mine {
  font-size: 10px;
}

.ms-x {
  position: absolute;
  font-size: 12px;
  color: #ff0000;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.ms-cell.ms-revealed {
  position: relative;
}

/* ── status message ───────────────────────────────────── */
.ms-msg {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
}

.ms-msg-win  { background: #c0c0c0; color: #000080; }
.ms-msg-lose { background: #c0c0c0; color: #800000; }
.start-menu {
  position: fixed;
  bottom: 40px;
  left: 0;
  width: 220px;
  background-color: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  display: flex;
  flex-direction: row;
  z-index: 9001;
  box-shadow: 2px 2px 0 #000;
}

.start-menu-rail {
  width: 28px;
  background: linear-gradient(to top, #000080, #1084d0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  flex-shrink: 0;
}

.start-menu-rail-text {
  color: #c0c0c0;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 2px;
  user-select: none;
}

.start-menu-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.start-menu-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #808080;
  margin-bottom: 4px;
}

.start-menu-user-avatar {
  width: 32px;
  height: 32px;
  background-color: #000080;
  color: #ffffff;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  flex-shrink: 0;
}

.start-menu-user-name {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 11px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.start-menu-separator {
  height: 1px;
  background-color: #808080;
  margin: 4px 8px;
  box-shadow: 0 1px 0 #ffffff;
}

.start-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 12px;
}

.start-menu-item:hover {
  background-color: #000080;
  color: #ffffff;
}

.start-menu-item-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.start-menu-item-label {
  flex: 1;
}
.win95-window {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  min-height: 120px;
}

.title-bar-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  image-rendering: pixelated;
}

.win95-window-body {
  flex: 1;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.launch-root {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 20px 18px;
  box-sizing: border-box;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', Arial, sans-serif;
  background: #c0c0c0;
}

.launch-app-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* miniature exe icon */
.launch-exe-icon {
  display: inline-flex;
  flex-direction: column;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #808080;
  box-shadow: 1px 1px 0 #ffffff inset, -1px -1px 0 #404040 inset;
  overflow: hidden;
}

.launch-exe-titlebar {
  display: block;
  height: 9px;
  background: #000080;
  flex-shrink: 0;
}

.launch-exe-body {
  display: block;
  flex: 1;
  background: #ffffff;
}

.launch-app-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.launch-app-name {
  font-size: 13px;
  font-weight: bold;
}

.launch-app-status {
  font-size: 11px;
  color: #444;
}

/* progress bar */
.launch-progress-track {
  width: 100%;
  height: 18px;
  background: #ffffff;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  overflow: hidden;
}

.launch-progress-fill {
  height: 100%;
  background: #000080;
  transition: width 0.05s linear;
}
.fm-root {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  background: #c0c0c0;
  overflow: hidden;
}

/* ── menu bar ─────────────────────────────────────────── */
.fm-menubar {
  display: flex;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  padding: 1px 2px;
  flex-shrink: 0;
}

.fm-menu-item {
  background: none;
  border: 1px solid transparent;
  padding: 1px 6px;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
}

.fm-menu-item:hover {
  background: #000080;
  color: #ffffff;
  border-color: #000080;
}

/* ── toolbar ──────────────────────────────────────────── */
.fm-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px 4px;
  border-bottom: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #c0c0c0;
  flex-shrink: 0;
}

.fm-toolbar-btn {
  width: 24px;
  height: 22px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fm-toolbar-btn:active {
  border-color: #808080 #ffffff #ffffff #808080;
}

.fm-toolbar-sep {
  width: 2px;
  height: 20px;
  border-left: 1px solid #808080;
  border-right: 1px solid #ffffff;
  margin: 0 3px;
}

/* ── address bar ──────────────────────────────────────── */
.fm-addressbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  border-bottom: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  flex-shrink: 0;
}

.fm-addressbar-label {
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}

.fm-addressbar-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  padding: 1px 4px;
  height: 20px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.fm-addressbar-icon {
  font-size: 13px;
  flex-shrink: 0;
}

/* ── main split ───────────────────────────────────────── */
.fm-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  border-top: 1px solid #ffffff;
}

/* ── tree panel ───────────────────────────────────────── */
.fm-tree {
  width: 160px;
  min-width: 160px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  border-right: none;
}

.fm-divider {
  width: 4px;
  background: #c0c0c0;
  border-left: 1px solid #808080;
  border-right: 1px solid #ffffff;
  flex-shrink: 0;
  cursor: col-resize;
}

.fm-tree-node {
  user-select: none;
}

.fm-tree-row {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  cursor: pointer;
  white-space: nowrap;
  padding-right: 4px;
}

.fm-tree-row:hover {
  background: #c0c0c0;
}

.fm-tree-row.selected {
  background: #000080;
  color: #ffffff;
}

.fm-tree-toggle {
  width: 12px;
  font-size: 8px;
  text-align: center;
  flex-shrink: 0;
  color: inherit;
}

.fm-tree-icon {
  font-size: 13px;
  flex-shrink: 0;
}

.fm-tree-label {
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── content panel ────────────────────────────────────── */
.fm-content {
  flex: 1;
  overflow: auto;
  background: #ffffff;
  padding: 4px;
}

.fm-empty {
  color: #808080;
  padding: 8px;
  font-size: 11px;
}

.fm-error {
  color: #cc0000;
}

/* icons view */
.fm-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  align-content: flex-start;
}

.fm-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  padding: 6px 4px;
  border: 1px solid transparent;
  cursor: default;
  gap: 2px;
}

.fm-icon-item:hover {
  background: #c0c0c0;
  border: 1px dotted #808080;
}

/* exe icon */
.fm-exe-icon {
  display: inline-flex;
  flex-direction: column;
  width: 32px;
  height: 32px;
  border: 1px solid #808080;
  box-shadow: 1px 1px 0 #ffffff inset, -1px -1px 0 #404040 inset;
  background: #c0c0c0;
  flex-shrink: 0;
  overflow: hidden;
}

.fm-exe-titlebar {
  display: block;
  height: 6px;
  background: #000080;
  flex-shrink: 0;
}

.fm-exe-body {
  display: block;
  flex: 1;
  background: #ffffff;
}

.fm-icon-img {
  font-size: 28px;
  line-height: 1;
}

.fm-icon-name {
  font-size: 10px;
  text-align: center;
  word-break: break-word;
  color: #000;
}

.fm-icon-value {
  font-size: 10px;
  text-align: center;
  color: #000080;
  font-weight: bold;
  word-break: break-all;
  max-width: 78px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* details view */
.fm-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.fm-details-table thead th {
  background: #c0c0c0;
  border: 1px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 1px 6px;
  text-align: left;
  font-weight: bold;
  white-space: nowrap;
  cursor: default;
}

.fm-details-table tbody tr:hover {
  background: #c0c0c0;
}

.fm-details-table tbody tr td {
  padding: 1px 6px;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}

.fm-detail-icon {
  margin-right: 5px;
}

/* ── status bar ───────────────────────────────────────── */
.fm-statusbar {
  flex-shrink: 0;
  height: 18px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  border-top: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #c0c0c0;
  font-size: 11px;
}
.ie-root {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  background: #c0c0c0;
  overflow: hidden;
}

/* ── menu bar ─────────────────────────────────────────── */
.ie-menubar {
  display: flex;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  padding: 1px 2px;
  flex-shrink: 0;
}

.ie-menu-item {
  background: none;
  border: 1px solid transparent;
  padding: 1px 6px;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
}

.ie-menu-item:hover {
  background: #000080;
  color: #ffffff;
}

/* ── toolbar ──────────────────────────────────────────── */
.ie-toolbar {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 2px 4px;
  background: #c0c0c0;
  border-bottom: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  flex-shrink: 0;
}

.ie-toolbar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 2px 4px;
  background: #c0c0c0;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  gap: 1px;
}

.ie-toolbar-btn:hover {
  border-color: #ffffff #808080 #808080 #ffffff;
}

.ie-toolbar-btn:active {
  border-color: #808080 #ffffff #ffffff #808080;
}

.ie-btn-icon {
  font-size: 14px;
  line-height: 1;
}

.ie-btn-label {
  font-size: 9px;
  white-space: nowrap;
}

.ie-toolbar-sep {
  width: 2px;
  height: 30px;
  border-left: 1px solid #808080;
  border-right: 1px solid #ffffff;
  margin: 0 4px;
  flex-shrink: 0;
}

/* ── address bar ──────────────────────────────────────── */
.ie-addressbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  flex-shrink: 0;
}

.ie-addressbar-label {
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
}

.ie-addressbar-value {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  padding: 0 4px;
  background: #ffffff;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.ie-addressbar-globe {
  font-size: 13px;
  flex-shrink: 0;
}

.ie-go-btn {
  height: 20px;
  padding: 0 8px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
}

.ie-go-btn:active {
  border-color: #808080 #ffffff #ffffff #808080;
}

/* ── links bar ────────────────────────────────────────── */
.ie-linksbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 1px 4px;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  flex-shrink: 0;
  overflow: hidden;
}

.ie-linksbar-label {
  font-size: 10px;
  font-weight: bold;
  margin-right: 4px;
  white-space: nowrap;
}

.ie-link-chip {
  font-size: 10px;
  font-family: inherit;
  background: #c0c0c0;
  border: 1px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 1px 6px;
  cursor: pointer;
  white-space: nowrap;
}

.ie-link-chip:hover {
  background: #000080;
  color: #ffffff;
}

/* ── content area ─────────────────────────────────────── */
.ie-content {
  flex: 1;
  overflow: auto;
  background: #ffffff;
}

/* ── status bar ───────────────────────────────────────── */
.ie-statusbar {
  flex-shrink: 0;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  border-top: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  background: #c0c0c0;
  font-size: 11px;
}

.ie-status-text {
  flex: 1;
}

.ie-status-zone {
  border: 1px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  padding: 0 8px;
  font-size: 10px;
  white-space: nowrap;
}
/* ───────────────────────────────────────────────────────
   1995 Personal Homepage — authentic terrible CSS
──────────────────────────────────────────────────────── */

.php-page {
  background-color: #000033;
  background-image:
    radial-gradient(circle, rgba(255,255,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #cccccc;
  font-family: 'Times New Roman', Times, serif;
  min-height: 100%;
  padding: 12px 16px;
  overflow-y: auto;
}

/* scrolling marquee header */
.php-marquee {
  background-color: #000080;
  color: #ffff00;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 0;
  border-top: 2px solid #ffff00;
  border-bottom: 2px solid #ffff00;
}

/* main title */
.php-title {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 28px;
  text-align: center;
  text-shadow: 3px 3px 0px #ff00ff, -1px -1px 0 #0000ff;
  margin: 14px 0 6px;
}

/* blinking "best viewed" notice */
.php-blink {
  text-align: center;
  color: #ff4444;
  font-size: 11px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  animation: blink95 0.9s step-start infinite;
  margin: 0 0 8px;
}

@keyframes blink95 {
  0%, 49% { visibility: visible; }
  50%, 100% { visibility: hidden; }
}

/* horizontal rule */
.php-hr {
  border: none;
  border-top: 3px double #ffff00;
  margin: 10px 0;
}

/* under construction */
.php-construction {
  font-size: 24px;
}
.php-under {
  background-color: #ffff00;
  color: #000000;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  padding: 2px 4px;
}

/* headings */
.php-h2 {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 20px;
  color: #ffff00;
  text-decoration: underline;
  margin: 10px 0 6px;
}

/* centered table utility */
.php-center-table {
  width: 100%;
  text-align: center;
}

/* data table */
.php-table {
  border: 3px solid #00ff00;
  width: 100%;
  font-size: 13px;
  background-color: #001100;
  border-collapse: collapse;
}

.php-td-label {
  color: #00ff00;
  font-weight: bold;
  padding: 4px 8px;
  border: 1px solid #004400;
  white-space: nowrap;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  width: 120px;
}

.php-td-val {
  color: #ccffcc;
  padding: 4px 8px;
  border: 1px solid #004400;
  font-size: 12px;
}

/* lists */
.php-list {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  font-family: 'Arial', sans-serif;
}

.php-list li::marker {
  color: #ffff00;
}

/* links */
.php-link {
  color: #ff00ff;
  text-decoration: underline;
  font-weight: bold;
}

.php-link:visited {
  color: #aa00aa;
}

.php-link:hover {
  color: #ffff00;
  background-color: #000080;
}

/* visitor counter */
.php-counter {
  color: #00ffff;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  margin: 6px 0 2px;
}

.php-counter-digits {
  background-color: #000000;
  color: #ff0000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  font-weight: bold;
  padding: 1px 4px;
  border: 1px solid #ff0000;
  letter-spacing: 3px;
}

/* bottom marquee */
.php-bottom-marquee {
  color: #00ff00;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  font-size: 13px;
  margin: 8px 0;
}

/* copyright / footer */
.php-copyright {
  text-align: center;
  color: #888888;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  margin-top: 12px;
  line-height: 1.6;
}

.php-small {
  font-size: 10px;
  color: #888888;
  font-family: 'Arial', sans-serif;
}
.mp-shell {
  background: #c0c0c0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  height: 100%;
  box-sizing: border-box;
}

/* LCD display */
.mp-display {
  background: #1a2a1a;
  border: 2px inset #808080;
  padding: 6px 8px;
  overflow: hidden;
  white-space: nowrap;
}

.mp-marquee {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #40e040;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px #20c020;
}

/* progress */
.mp-progress-track {
  position: relative;
  height: 12px;
  background: #808080;
  border: 2px inset #606060;
  cursor: pointer;
}

.mp-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #000080, #0040c0);
  pointer-events: none;
}

.mp-progress-thumb {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 16px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.mp-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #444;
  padding: 0 2px;
}

/* transport buttons */
.mp-controls {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.mp-btn {
  width: 36px;
  height: 28px;
  font-size: 13px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mp-btn:active {
  border-color: #808080 #fff #fff #808080;
}

.mp-btn-play {
  width: 44px;
  font-size: 15px;
}

/* volume */
.mp-volume-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px;
}

.mp-vol-label {
  font-size: 12px;
  flex-shrink: 0;
}

.mp-volume {
  flex: 1;
  height: 16px;
  accent-color: #000080;
  cursor: pointer;
}
.recycle-bin {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  background: white;
  overflow: hidden;
}

.recycle-bin-toolbar {
  display: flex;
  gap: 4px;
  padding: 3px 4px;
  border-bottom: 1px solid #808080;
  background: #c0c0c0;
  flex-shrink: 0;
}

.recycle-bin-toolbar-btn {
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  padding: 2px 8px;
  cursor: default;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
}

.recycle-bin-toolbar-btn:disabled {
  color: #808080;
  text-shadow: 1px 1px 0 #fff;
}

.recycle-bin-header {
  display: flex;
  background: #c0c0c0;
  border-bottom: 2px solid;
  border-color: #808080 #fff #fff #808080;
  flex-shrink: 0;
}

.rb-col {
  padding: 2px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rb-col-name     { flex: 0 0 220px; min-width: 0; }
.rb-col-location { flex: 0 0 160px; min-width: 0; }
.rb-col-date     { flex: 0 0 90px;  min-width: 0; }
.rb-col-type     { flex: 1 1 auto;  min-width: 0; }
.rb-col-size     { flex: 0 0 80px;  min-width: 0; text-align: right; justify-content: flex-end; }

.recycle-bin-header .rb-col {
  font-weight: bold;
  font-size: 11px;
  border-right: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  cursor: default;
  user-select: none;
}

.recycle-bin-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: auto;
}

.recycle-bin-row {
  display: flex;
  align-items: stretch;
  cursor: default;
  user-select: none;
}

.recycle-bin-row:hover {
  background: #000080;
  color: white;
}

.rb-row-playable { cursor: pointer; }

.recycle-bin-row .rb-col {
  border-right: 1px solid #e0e0e0;
  font-size: 11px;
}

.rb-icon {
  font-size: 13px;
  flex-shrink: 0;
}

.recycle-bin-status {
  padding: 2px 8px;
  border-top: 2px solid;
  border-color: #808080 #fff #fff #808080;
  background: #c0c0c0;
  font-size: 11px;
  flex-shrink: 0;
}
/* ── shared ── */
.aol-idle,
.aol-dialing,
.aol-welcome,
.aol-mailbox {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a3a6b;
  color: #fff;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  padding: 16px;
  box-sizing: border-box;
  gap: 10px;
}

/* ── idle / sign-on screen ── */
.aol-logo-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}

.aol-tagline {
  font-size: 11px;
  color: #a0b8e0;
  margin: 0 0 8px;
}

.aol-form {
  background: rgba(0,0,0,0.3);
  border: 1px solid #4466aa;
  padding: 10px 16px;
  width: 100%;
  max-width: 260px;
  box-sizing: border-box;
}

.aol-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 11px;
}

.aol-field label {
  width: 85px;
  text-align: right;
  color: #c8d8f0;
  flex-shrink: 0;
}

.aol-input {
  flex: 1;
  background: white;
  color: #000;
  padding: 2px 4px;
  font-size: 11px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  border: 2px inset #808080;
}

.aol-connect-btn {
  margin-top: 6px;
  padding: 5px 28px;
  background: #ffd700;
  color: #1a3a6b;
  border: 2px solid;
  border-color: #fff8a0 #a08000 #a08000 #fff8a0;
  font-weight: bold;
  font-size: 12px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
}

.aol-connect-btn:hover { background: #ffe84d; }
.aol-connect-btn:active { border-color: #a08000 #fff8a0 #fff8a0 #a08000; }

/* ── dialing screen ── */
.aol-logo-small {
  display: flex;
  align-items: center;
}

.aol-status-msg {
  font-size: 12px;
  color: #c8d8f0;
  min-height: 18px;
  text-align: center;
}

.aol-modem-noise {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  color: #40ff80;
  letter-spacing: 1px;
  min-height: 14px;
  text-align: center;
  opacity: 0.8;
  word-break: break-all;
  max-width: 280px;
}

.aol-progress-track {
  width: 240px;
  height: 14px;
  background: #0a1e3d;
  border: 2px inset #4466aa;
}

.aol-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #4488ff, #66aaff);
  transition: width 0.1s linear;
}

.aol-progress-label {
  font-size: 10px;
  color: #88aacc;
}

.aol-cancel-btn {
  margin-top: 4px;
  padding: 3px 16px;
  background: #c0c0c0;
  color: #000;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  font-size: 11px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  cursor: pointer;
}

/* ── welcome screen ── */
.aol-welcome-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aol-welcome-banner {
  font-size: 15px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.aol-you-got-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,215,0,0.12);
  border: 2px solid #ffd700;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 2px;
}

.aol-you-got-mail:hover { background: rgba(255,215,0,0.22); }

.aol-mailbox-icon { font-size: 32px; }

.aol-mail-text {
  font-size: 16px;
  font-weight: bold;
  color: #ffd700;
}

.aol-mail-count {
  font-size: 11px;
  color: #c8d8f0;
}

.aol-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 100%;
  max-width: 260px;
}

.aol-channel {
  background: rgba(255,255,255,0.08);
  border: 1px solid #4466aa;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  text-align: center;
}

.aol-channel:hover { background: rgba(255,255,255,0.16); }

/* ── mailbox ── */
.aol-mailbox {
  justify-content: flex-start;
  padding: 0;
}

.aol-mailbox-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px 8px;
  background: #0f2850;
  border-bottom: 1px solid #4466aa;
  box-sizing: border-box;
  flex-shrink: 0;
}

.aol-mb-btn {
  padding: 2px 8px;
  background: #c0c0c0;
  color: #000;
  border: 2px solid;
  border-color: #fff #808080 #808080 #fff;
  font-size: 11px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  cursor: pointer;
}

.aol-mb-title {
  font-size: 12px;
  font-weight: bold;
  color: #ffd700;
}

.aol-mail-list {
  flex: 1;
  overflow-y: auto;
  width: 100%;
}

.aol-mail-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-bottom: 1px solid #1e3a6a;
  font-size: 11px;
  cursor: default;
}

.aol-mail-row:hover { background: rgba(255,255,255,0.1); }

.aol-mail-icon { flex-shrink: 0; font-size: 12px; }

.aol-mail-from {
  flex: 0 0 140px;
  font-weight: bold;
  color: #a8c8ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aol-mail-subject {
  flex: 1;
  color: #d0e4ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offline-page {
  height: 100%;
  overflow-y: auto;
  background: #fff;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 12px;
  color: #000;
  padding: 0;
}

.offline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 12px;
  background: #fff;
}

.offline-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #cc0000;
  color: white;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
}

.offline-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  color: #000;
}

.offline-rule {
  border: none;
  border-top: 2px solid #003399;
  margin: 0 0 12px;
}

.offline-body {
  padding: 0 20px 16px;
}

.offline-body p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.offline-body ul {
  margin: 0 0 12px 0;
  padding-left: 24px;
}

.offline-body li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.offline-aol-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fffbe6;
  border: 1px solid #c8a800;
  padding: 8px 10px;
  margin: 12px 0;
  font-size: 12px;
  line-height: 1.5;
}

.offline-aol-icon {
  color: #c8a800;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

.offline-footer {
  font-size: 11px;
  color: #555;
  margin: 8px 0 0;
  line-height: 1.6;
}
.clippy-container {
  position: fixed;
  bottom: 52px; /* sit above the taskbar */
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  transform: translateY(160px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
}

.clippy-container.clippy-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Speech bubble */
.clippy-bubble {
  position: relative;
  background: #ffffc0;
  border: 2px solid #333;
  border-radius: 4px;
  padding: 8px 28px 8px 12px;
  margin-bottom: 6px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  white-space: nowrap;
  animation: clippy-bubble-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation-delay: 0.2s;
}

@keyframes clippy-bubble-pop {
  from { transform: scale(0.5); opacity: 0; transform-origin: bottom right; }
  to   { transform: scale(1);   opacity: 1; }
}

.clippy-bubble p {
  margin: 0;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #000;
}

/* Tail pointing down-right toward Clippy */
.clippy-bubble-tail {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #333;
}

.clippy-bubble-tail::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 0px solid transparent;
  border-top: 9px solid #ffffc0;
}

.clippy-bubble-close {
  position: absolute;
  top: 2px;
  right: 4px;
  background: none;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0 2px;
  font-family: Arial, sans-serif;
}

.clippy-bubble-close:hover {
  color: #c00;
}

/* Clippy SVG character */
.clippy-svg {
  cursor: pointer;
  filter: drop-shadow(2px 3px 3px rgba(0,0,0,0.4));
  transition: transform 0.15s ease;
  animation: clippy-idle 4s ease-in-out infinite;
  animation-delay: 1s;
}

.clippy-svg:hover {
  transform: scale(1.08);
}

@keyframes clippy-idle {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.bsod {
  position: fixed;
  inset: 0;
  background: #0000aa;
  color: #ffffff;
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 14px;
  line-height: 1.6;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
}

.bsod-content {
  max-width: 640px;
  padding: 24px 32px;
}

.bsod-header {
  background: #aaaaaa;
  color: #0000aa;
  display: inline-block;
  padding: 0 6px;
  margin-bottom: 16px;
  font-weight: bold;
}

.bsod-content p {
  margin: 0 0 14px;
}

.bsod-content em {
  font-style: normal;
  background: #aaaaaa;
  color: #0000aa;
  padding: 0 2px;
}

.bsod-bullets {
  white-space: pre;
}

.bsod-continue {
  margin-top: 24px !important;
  color: #ffffff;
}
.desktop {
  width: 100vw;
  height: 100vh;
  background-color: #008080;
  position: relative;
  overflow: hidden;
}

.desktop-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 76px;
  padding: 6px 4px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000;
}

.desktop-icon:hover {
  border: 1px dotted #ffffff;
  background-color: rgba(0, 0, 128, 0.4);
}

.desktop-icon:focus {
  border: 1px dotted #ffffff;
  background-color: rgba(0, 0, 128, 0.6);
  outline: none;
}

.desktop-icon-img {
  font-size: 32px;
  line-height: 1;
  image-rendering: pixelated;
  display: block;
}

.desktop-icon-label {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  max-width: 68px;
}

/*! 98.css v0.1.21 - https://github.com/jdan/98.css */@font-face{font-family:"Pixelated MS Sans Serif";font-style:normal;font-weight:400;src:url(/assets/ms_sans_serif-C3pax6mQ.woff) format("woff");src:url(/assets/ms_sans_serif-Du8rjN1q.woff2) format("woff2")}@font-face{font-family:"Pixelated MS Sans Serif";font-style:normal;font-weight:700;src:url(/assets/ms_sans_serif_bold-B8yxhAcs.woff) format("woff");src:url(/assets/ms_sans_serif_bold-D5dpRRHG.woff2) format("woff2")}body{color:#222;font-family:Arial;font-size:12px}.title-bar,.window,button,input,label,legend,li[role=tab],option,select,table,textarea,ul.tree-view{-webkit-font-smoothing:none;font-family:"Pixelated MS Sans Serif",Arial;font-size:11px}h1{font-size:5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}u{border-bottom:.5px solid #222;text-decoration:none}button,input[type=reset],input[type=submit]{background:silver;border:none;border-radius:0;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;box-sizing:border-box;color:transparent;min-height:23px;min-width:75px;padding:0 12px;text-shadow:0 0 #222}button.default,input[type=reset].default,input[type=submit].default{box-shadow:inset -2px -2px #0a0a0a,inset 1px 1px #0a0a0a,inset 2px 2px #fff,inset -3px -3px grey,inset 3px 3px #dfdfdf}.vertical-bar{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;height:20px;width:4px}button:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey;text-shadow:1px 1px #222}button.default:not(:disabled):active,input[type=reset].default:not(:disabled):active,input[type=submit].default:not(:disabled):active{box-shadow:inset 2px 2px #0a0a0a,inset -1px -1px #0a0a0a,inset -2px -2px #fff,inset 3px 3px grey,inset -3px -3px #dfdfdf}@media (not(hover)){button:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}}button:focus,input[type=reset]:focus,input[type=submit]:focus{outline:1px dotted #000;outline-offset:-4px}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}:disabled,:disabled+label,input[readonly],input[readonly]+label{color:grey}:disabled+label,button:disabled,input[type=reset]:disabled,input[type=submit]:disabled{text-shadow:1px 1px 0 #fff}.window{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;padding:3px}.title-bar{align-items:center;background:linear-gradient(90deg,navy,#1084d0);display:flex;justify-content:space-between;padding:3px 2px 3px 3px}.title-bar.inactive{background:linear-gradient(90deg,grey,#b5b5b5)}.title-bar-text{color:#fff;font-weight:700;letter-spacing:0;margin-right:24px}.title-bar-controls{display:flex}.title-bar-controls button{display:block;min-height:14px;min-width:16px;padding:0}.title-bar-controls button:active{padding:0}.title-bar-controls button:focus{outline:none}.title-bar-controls button[aria-label=Minimize],.title-bar-controls button[aria-label].minimize{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 0h6v2H0z'/%3E%3C/svg%3E");background-position:bottom 3px left 4px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Maximize],.title-bar-controls button[aria-label].maximize{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='9' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 0H0v9h9V0zM8 2H1v6h7V2z' fill='%23000'/%3E%3C/svg%3E");background-position:top 2px left 3px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Maximize]:disabled,.title-bar-controls button[aria-label].maximize:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 1H1v9h9V1zM9 3H2v6h7V3z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 0H0v9h9V0zM8 2H1v6h7V2z' fill='gray'/%3E%3C/svg%3E");background-position:top 2px left 3px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Restore],.title-bar-controls button[aria-label].restore{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M2 0h6v2H2zM7 2h1v4H7zM2 2h1v1H2zM6 5h1v1H6zM0 3h6v2H0zM5 5h1v4H5zM0 5h1v4H0zM1 8h4v1H1z'/%3E%3C/svg%3E");background-position:top 2px left 3px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Help],.title-bar-controls button[aria-label].help{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 1h2v2H0zM1 0h4v1H1zM4 1h2v2H4zM3 3h2v1H3zM2 4h2v2H2zM2 7h2v2H2z'/%3E%3C/svg%3E");background-position:top 2px left 5px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Close],.title-bar-controls button[aria-label].close{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h2v1h1v1h2V1h1V0h2v1H7v1H6v1H5v1h1v1h1v1h1v1H6V6H5V5H3v1H2v1H0V6h1V5h1V4h1V3H2V2H1V1H0V0z' fill='%23000'/%3E%3C/svg%3E");background-position:top 3px left 4px;background-repeat:no-repeat;margin-left:2px}.status-bar{gap:1px;display:flex;margin:0 1px}.status-bar-field{box-shadow:inset -1px -1px #dfdfdf,inset 1px 1px grey;flex-grow:1;margin:0;padding:2px 3px}.window-body{margin:8px}fieldset{border-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='5' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h5v5H0V2h2v1h1V2H0' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h4v4H0V1h1v2h2V1H0'/%3E%3C/svg%3E") 2;margin:0;padding:10px;padding-block-start:8px}legend{background:silver}.field-row{align-items:center;display:flex}[class^=field-row]+[class^=field-row]{margin-top:6px}.field-row>*+*{margin-left:6px}.field-row-stacked{display:flex;flex-direction:column}.field-row-stacked *+*{margin-top:6px}label{align-items:center;display:inline-flex;user-select:none}input[type=checkbox],input[type=radio]{appearance:none;-webkit-appearance:none;-moz-appearance:none;background:0;border:none;margin:0;opacity:0;position:fixed}input[type=checkbox]+label,input[type=radio]+label{line-height:13px}input[type=radio]+label{margin-left:18px;position:relative}input[type=radio]+label:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='%23fff'/%3E%3C/svg%3E");content:"";display:inline-block;height:12px;left:-18px;margin-right:6px;position:absolute;top:0;width:12px}input[type=radio]:active+label:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='silver'/%3E%3C/svg%3E")}input[type=radio]:checked+label:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1v1H0v2h1v1h2V3h1V1H3V0z' fill='%23000'/%3E%3C/svg%3E");content:"";display:block;height:4px;left:-14px;position:absolute;top:4px;width:4px}input[type=checkbox]:focus+label,input[type=radio]:focus+label{outline:1px dotted #000}input[type=radio][disabled]+label:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0H4v1H2v1H1v2H0v4h1v2h1V8H1V4h1V2h2V1h4v1h2V1H8V0z' fill='gray'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 1H4v1H2v2H1v4h1v1h1V8H2V4h1V3h1V2h4v1h2V2H8V1z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3h1v1H9V3zm1 5V4h1v4h-1zm-2 2V9h1V8h1v2H8zm-4 0v1h4v-1H4zm0 0V9H2v1h2z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 2h-1v2h1v4h-1v2H8v1H4v-1H2v1h2v1h4v-1h2v-1h1V8h1V4h-1V2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2h4v1h1v1h1v4H9v1H8v1H4V9H3V8H2V4h1V3h1V2z' fill='silver'/%3E%3C/svg%3E")}input[type=radio][disabled]:checked+label:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='4' height='4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0H1v1H0v2h1v1h2V3h1V1H3V0z' fill='gray'/%3E%3C/svg%3E")}input[type=checkbox]+label{margin-left:19px;position:relative}input[type=checkbox]+label:before{background:#fff;box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;content:"";display:inline-block;height:13px;left:-19px;margin-right:6px;position:absolute;width:13px}input[type=checkbox]:active+label:before{background:silver}input[type=checkbox]:checked+label:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6v1H5v1H4v1H3v1H2V3H1V2H0v3h1v1h1v1h1V6h1V5h1V4h1V3h1V0z' fill='%23000'/%3E%3C/svg%3E");content:"";display:block;height:7px;left:-16px;position:absolute;width:7px}input[type=checkbox][disabled]+label:before{background:silver}input[type=checkbox][disabled]:checked+label:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 0H6v1H5v1H4v1H3v1H2V3H1V2H0v3h1v1h1v1h1V6h1V5h1V4h1V3h1V0z' fill='gray'/%3E%3C/svg%3E")}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;border-radius:0}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select{background-color:#fff;box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;box-sizing:border-box;padding:3px 4px}select,textarea{border:none}textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-radius:0;box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;box-sizing:border-box;padding:3px 4px}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select{height:21px}input[type=number]{height:22px}input[type=search]::-ms-clear,input[type=search]::-ms-reveal{display:none;height:0;width:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url]{line-height:2}input[type=email]:disabled,input[type=email]:read-only,input[type=number]:disabled,input[type=number]:read-only,input[type=password]:disabled,input[type=password]:read-only,input[type=search]:disabled,input[type=search]:read-only,input[type=tel]:disabled,input[type=tel]:read-only,input[type=text]:disabled,input[type=text]:read-only,input[type=url]:disabled,input[type=url]:read-only,textarea:disabled{background-color:silver}select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 6H4v1h1v1h1v1h1v1h1V9h1V8h1V7h1V6z' fill='%23000'/%3E%3C/svg%3E");background-position:top 2px right 2px;background-repeat:no-repeat;border-radius:0;padding-right:32px;position:relative}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{outline:none}input[type=range]{-webkit-appearance:none;background:transparent;width:100%}input[type=range]:focus{outline:none}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v16h2v2h2v2h1v-1H3v-2H1V1h9V0z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 1v15h1v1h1v1h1v1h2v-1h1v-1h1v-1h1V1z' fill='%23C0C7C8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v15H8v2H6v2H5v-1h2v-2h2z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v16H9v2H7v2H5v1h1v-2h2v-2h2z' fill='%23000'/%3E%3C/svg%3E");border:none;box-shadow:none;height:21px;transform:translateY(-8px);width:11px}input[type=range].has-box-indicator::-webkit-slider-thumb{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v20h1V1h9V0z' fill='%23fff'/%3E%3Cpath fill='%23C0C7C8' d='M1 1h8v18H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v19H1v-1h8z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v21H0v-1h10z' fill='%23000'/%3E%3C/svg%3E");transform:translateY(-10px)}input[type=range]::-moz-range-thumb{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v16h2v2h2v2h1v-1H3v-2H1V1h9V0z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 1v15h1v1h1v1h1v1h2v-1h1v-1h1v-1h1V1z' fill='%23C0C7C8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v15H8v2H6v2H5v-1h2v-2h2z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v16H9v2H7v2H5v1h1v-2h2v-2h2z' fill='%23000'/%3E%3C/svg%3E");border:0;border-radius:0;height:21px;transform:translateY(2px);width:11px}input[type=range].has-box-indicator::-moz-range-thumb{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0v20h1V1h9V0z' fill='%23fff'/%3E%3Cpath fill='%23C0C7C8' d='M1 1h8v18H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 1h1v19H1v-1h8z' fill='%2387888F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 0h1v21H0v-1h10z' fill='%23000'/%3E%3C/svg%3E");transform:translateY(0)}input[type=range]::-webkit-slider-runnable-track{background:#000;border-bottom:1px solid grey;border-right:1px solid grey;box-shadow:1px 0 0 #fff,1px 1px 0 #fff,0 1px 0 #fff,-1px 0 0 #a9a9a9,-1px -1px 0 #a9a9a9,0 -1px 0 #a9a9a9,-1px 1px 0 #fff,1px -1px #a9a9a9;box-sizing:border-box;height:2px;width:100%}input[type=range]::-moz-range-track{background:#000;border-bottom:1px solid grey;border-right:1px solid grey;box-shadow:1px 0 0 #fff,1px 1px 0 #fff,0 1px 0 #fff,-1px 0 0 #a9a9a9,-1px -1px 0 #a9a9a9,0 -1px 0 #a9a9a9,-1px 1px 0 #fff,1px -1px #a9a9a9;box-sizing:border-box;height:2px;width:100%}.is-vertical{display:inline-block;height:150px;transform:translateY(50%);width:4px}.is-vertical>input[type=range]{height:4px;margin:0 16px 0 10px;transform:rotate(270deg) translateX(calc(-50% + 8px));transform-origin:left;width:150px}.is-vertical>input[type=range]::-webkit-slider-runnable-track{border-bottom:1px solid grey;border-left:1px solid grey;border-right:0;box-shadow:-1px 0 0 #fff,-1px 1px 0 #fff,0 1px 0 #fff,1px 0 0 #a9a9a9,1px -1px 0 #a9a9a9,0 -1px 0 #a9a9a9,1px 1px 0 #fff,-1px -1px #a9a9a9}.is-vertical>input[type=range]::-moz-range-track{border-bottom:1px solid grey;border-left:1px solid grey;border-right:0;box-shadow:-1px 0 0 #fff,-1px 1px 0 #fff,0 1px 0 #fff,1px 0 0 #a9a9a9,1px -1px 0 #a9a9a9,0 -1px 0 #a9a9a9,1px 1px 0 #fff,-1px -1px #a9a9a9}.is-vertical>input[type=range]::-webkit-slider-thumb{transform:translateY(-8px) scaleX(-1)}.is-vertical>input[type=range].has-box-indicator::-webkit-slider-thumb{transform:translateY(-10px) scaleX(-1)}.is-vertical>input[type=range]::-moz-range-thumb{transform:translateY(2px) scaleX(-1)}.is-vertical>input[type=range].has-box-indicator::-moz-range-thumb{transform:translateY(0) scaleX(-1)}select:focus{background-color:navy;color:#fff}select:focus option{background-color:#fff;color:#000}select:active{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h16v17H0V0zm1 16h14V1H1v15z' fill='gray'/%3E%3Cpath fill='silver' d='M1 1h14v15H1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 7H5v1h1v1h1v1h1v1h1v-1h1V9h1V8h1V7z' fill='%23000'/%3E%3C/svg%3E")}a{color:#00f}a:focus{outline:1px dotted #00f}ul.tree-view{background:#fff;box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;display:block;margin:0;padding:6px}ul.tree-view li{list-style-type:none}ul.tree-view a{color:#000;text-decoration:none}ul.tree-view a:focus{background-color:navy;color:#fff}ul.tree-view li,ul.tree-view ul{margin-top:3px}ul.tree-view ul{border-left:1px dotted grey;margin-left:16px;padding-left:16px}ul.tree-view ul>li{position:relative}ul.tree-view ul>li:before{border-bottom:1px dotted grey;content:"";display:block;left:-16px;position:absolute;top:6px;width:12px}ul.tree-view ul>li:last-child:after{background:#fff;bottom:0;content:"";display:block;left:-20px;position:absolute;top:7px;width:8px}ul.tree-view details{margin-top:0}ul.tree-view details[open] summary{margin-bottom:0}ul.tree-view ul details>summary:before{margin-left:-22px;position:relative;z-index:1}ul.tree-view details>summary:before{background-color:#fff;border:1px solid grey;content:"+";display:block;float:left;height:9px;line-height:8px;margin-right:5px;padding-left:1px;text-align:center;width:8px}ul.tree-view details[open]>summary:before{content:"-"}ul.tree-view details>summary::-webkit-details-marker,ul.tree-view details>summary::marker{content:""}pre{background:#fff;box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;display:block;margin:0;padding:12px 8px}code,code *{font-family:monospace}summary:focus{outline:1px dotted #000}::-webkit-scrollbar{width:16px}::-webkit-scrollbar:horizontal{height:17px}::-webkit-scrollbar-corner{background:#dfdfdf}::-webkit-scrollbar-track{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='2' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0H0v1h1v1h1V1H1V0z' fill='silver'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 0H1v1H0v1h1V1h1V0z' fill='%23fff'/%3E%3C/svg%3E")}::-webkit-scrollbar-thumb{background-color:#dfdfdf;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf}::-webkit-scrollbar-button:horizontal:end:increment,::-webkit-scrollbar-button:horizontal:start:decrement,::-webkit-scrollbar-button:vertical:end:increment,::-webkit-scrollbar-button:vertical:start:decrement{display:block}::-webkit-scrollbar-button:vertical:start{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 6H7v1H6v1H5v1H4v1h7V9h-1V8H9V7H8V6z' fill='%23000'/%3E%3C/svg%3E");height:17px}::-webkit-scrollbar-button:vertical:end{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 6H4v1h1v1h1v1h1v1h1V9h1V8h1V7h1V6z' fill='%23000'/%3E%3C/svg%3E");height:17px}::-webkit-scrollbar-button:horizontal:start{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 4H8v1H7v1H6v1H5v1h1v1h1v1h1v1h1V4z' fill='%23000'/%3E%3C/svg%3E");width:16px}::-webkit-scrollbar-button:horizontal:end{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 0H0v16h1V1h14V0z' fill='%23DFDFDF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H1v14h1V2h12V1H2z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 17H0v-1h15V0h1v17z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 1h-1v14H1v1h14V1z' fill='gray'/%3E%3Cpath fill='silver' d='M2 2h12v13H2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 4H6v7h1v-1h1V9h1V8h1V7H9V6H8V5H7V4z' fill='%23000'/%3E%3C/svg%3E");width:16px}.window[role=tabpanel]{position:relative;z-index:2}menu[role=tablist]{display:flex;list-style-type:none;margin:0 0 -2px;padding-left:3px;position:relative;text-indent:0}menu[role=tablist]>li{border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:inset -1px 0 #0a0a0a,inset 1px 1px #dfdfdf,inset -2px 0 grey,inset 2px 2px #fff;z-index:1}menu[role=tablist]>li[aria-selected=true]{background-color:silver;margin-left:-3px;margin-top:-2px;padding-bottom:2px;position:relative;z-index:8}menu[role=tablist]>li>a{color:#222;display:block;margin:6px;text-decoration:none}menu[role=tablist]>li[aria-selected=true]>a:focus{outline:none}menu[role=tablist]>li>a:focus{outline:1px dotted #222}menu[role=tablist].multirows>li{flex-grow:1;text-align:center}.sunken-panel{border:2px groove transparent;border-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='gray' d='M0 0h4v1H0z'/%3E%3Cpath fill='gray' d='M0 0h1v4H0z'/%3E%3Cpath fill='%230a0a0a' d='M1 1h2v1H1z'/%3E%3Cpath fill='%230a0a0a' d='M1 1h1v2H1z'/%3E%3Cpath fill='%23fff' d='M0 4h5v1H0z'/%3E%3Cpath fill='%23fff' d='M4 0h1v5H4z'/%3E%3Cpath fill='%23dfdfdf' d='M3 1h1v3H3z'/%3E%3Cpath fill='%23dfdfdf' d='M1 3h3v1H1z'/%3E%3C/svg%3E") 2;box-sizing:border-box;overflow:auto}.sunken-panel,table{background-color:#fff}table{border-collapse:collapse;position:relative;text-align:left;white-space:nowrap}table>thead>tr>*{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;box-sizing:border-box;font-weight:400;height:17px;padding:0 6px;position:sticky;top:0}table.interactive>tbody>tr{cursor:pointer}table>tbody>tr.highlighted{background-color:navy;color:#fff}table>tbody>tr>*{height:14px;padding:0 6px}.progress-indicator{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;border-radius:0;box-shadow:inset -2px -2px #dfdfdf,inset 2px 2px grey;box-sizing:border-box;height:32px;padding:4px;position:relative}.progress-indicator>.progress-indicator-bar{background-color:navy;display:block;height:100%}.progress-indicator.segmented>.progress-indicator-bar{background-color:transparent;background-image:linear-gradient(90deg,navy 16px,transparent 0 2px);background-repeat:repeat;background-size:18px 100%;width:100%}.field-border{background:#fff}.field-border,.field-border-disabled{box-shadow:inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;padding:2px}.field-border-disabled{background:silver}.status-field-border{background:silver;box-shadow:inset -1px -1px #dfdfdf,inset 1px 1px grey;padding:1px}
/*# sourceMappingURL=98.css.map */.auth-screen {
  width: 100vw;
  height: 100vh;
  background-color: #008080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-screen {
  cursor: pointer;
  flex-direction: column;
  gap: 0;
  background-color: #000;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.welcome-logo {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 4px;
}

.welcome-prompt {
  font-family: 'Pixelated MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
  font-size: 14px;
  color: #c0c0c0;
  animation: blink 1.2s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.auth-window {
  min-width: 320px;
}

.auth-window-body {
  padding: 16px;
}

.auth-progress {
  width: 100%;
  height: 20px;
  border: inset 2px;
  background: #fff;
  margin-top: 12px;
  overflow: hidden;
}

.auth-progress-bar {
  height: 100%;
  width: 40%;
  background: #000080;
  animation: progress-slide 1.5s ease-in-out infinite;
}

@keyframes progress-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
