body {
  margin: 0;
  min-height: 100vh;
  background: #008080;
  font-family: Arial, sans-serif;
}

#app {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.desktop-background {
  position: relative;
  min-height: 100vh;
  background: #008080;
}

.desktop-icons {
  padding: 20px 14px 60px 14px;
  width: 90px;
}

.desktop-icon {
  width: 90px;
  margin-bottom: 20px;
  padding: 4px;
  box-sizing: border-box;
  text-align: center;
  color: white;
  font-size: 12px;
  text-shadow: 1px 1px 0 black;
  cursor: default;
}

.desktop-icon img {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 6px auto;
}

.desktop-icon span {
  display: block;
  line-height: 1.2;
}

.desktop-icon.selected {
  background: rgba(0, 0, 128, 0.45);
  outline: 1px dotted white;
}

.taskbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  padding: 0 6px;
  box-sizing: border-box;
  z-index: 20;
}

.start-button {
  padding: 4px 10px;
  border: 2px outset #dcdcdc;
  background: #c0c0c0;
  font-weight: bold;
  font-size: 13px;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.start-button:active,
.start-button.active {
  border: 2px inset #dcdcdc;
}

.start-menu {
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 180px;
  background: #c0c0c0;
  border: 2px outset #dcdcdc;
  box-shadow: 3px 3px 0 black;
  display: none;
  z-index: 100;
}

.start-menu.open {
  display: block;
}

.start-menu-header {
  background: navy;
  color: white;
  font-weight: bold;
  padding: 8px;
  font-size: 13px;
}

.start-menu-item {
  display: block;
  padding: 8px 10px;
  color: black;
  text-decoration: none;
  font-size: 13px;
}

.start-menu-item:hover {
  background: navy;
  color: white;
}

.taskbar-title {
  font-size: 13px;
  color: black;
}

.taskbar-clock {
  margin-left: auto;
  padding: 4px 8px;
  border: 2px inset #dcdcdc;
  font-size: 12px;
  background: #c0c0c0;
}

.dialup-window {
  width: 360px;
  background: #c0c0c0;
  border: 2px solid black;
  box-shadow: 4px 4px 0 black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 10;
}

.title-bar {
  background: navy;
  color: white;
  padding: 8px 10px;
  font-weight: bold;
  font-size: 14px;
}

.window-body {
  padding: 16px;
}

.dialup-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: bold;
}

#statusText {
  margin-bottom: 12px;
}

.progress-outer {
  width: 100%;
  height: 24px;
  background: white;
  border: 2px inset gray;
  margin-bottom: 12px;
  box-sizing: border-box;
  overflow: hidden;
}

.progress-inner {
  height: 100%;
  padding: 2px;
  box-sizing: border-box;
  white-space: nowrap;
}

.progress-block {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-right: 1px;
  background: navy;
  vertical-align: top;
}

.connection-speed {
  font-size: 14px;
  color: #333;
  margin-bottom: 14px;
}

.button-row {
  margin-top: 10px;
}

#connectBtn {
  padding: 6px 12px;
  border: 2px outset #dcdcdc;
  background: #c0c0c0;
  cursor: pointer;
}

#connectBtn:active {
  border: 2px inset #dcdcdc;
}

#connectBtn:disabled {
  cursor: default;
  color: #666;
}

.blinking {
  animation: blinkText 1s steps(1, end) infinite;
}

@keyframes blinkText {
  50% {
    visibility: hidden;
  }
}

.transfer-stats {
  font-size: 10px;
  color: #333;
  margin-top: -6px;
  margin-bottom: 14px;
}