html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "MS Sans Serif", Arial, sans-serif;
  background: teal;
}

.desktop {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #008080;
  overflow: hidden;
}

.desktop-icons {
  position: absolute;
  top: 14px;
  left: 10px;
  display: grid;
  gap: 14px;
}

.desktop-icon {
  width: 90px;
  background: transparent;
  border: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.desktop-icon:focus,
.desktop-icon:hover {
  background: rgba(255,255,255,0.15);
}

.icon-img {
  font-size: 28px;
  line-height: 1;
}

.icon-label {
  font-size: 12px;
  text-align: center;
}

.window {
  position: absolute;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  box-shadow: 1px 1px 0 #000;
}

.hidden {
  display: none;
}

.title-bar {
  height: 26px;
  background: linear-gradient(to right, #000080, #1084d0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  cursor: move;
  font-size: 13px;
  font-weight: bold;
}

.title-bar-controls {
  display: flex;
  gap: 4px;
}

.title-bar-controls button {
  width: 22px;
  height: 20px;
  border: 2px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  background: #c0c0c0;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}

.menu-bar {
  padding: 6px 8px;
  font-size: 13px;
  background: #c0c0c0;
  border-bottom: 1px solid #9a9a9a;
}

.window-body {
  padding: 12px;
  font-size: 14px;
  color: black;
  background: #c0c0c0;
}

.window-body a {
  color: #000080;
  text-decoration: none;
}

.window-body a:hover {
  text-decoration: underline;
}

.explorer-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 320px;
  padding: 0;
}

.sidebar {
  background: #d4d0c8;
  border-right: 1px solid #808080;
  padding: 12px;
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.folder-area {
  background: white;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 20px;
  align-content: start;
}

.folder-item {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  gap: 8px;
}

.folder-icon {
  font-size: 30px;
}

.status-bar {
  border-top: 1px solid #808080;
  padding: 4px 8px;
  background: #d4d0c8;
  font-size: 12px;
}

.small-window .window-body {
  min-height: 80px;
}

.taskbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
}

.start-button {
  height: 28px;
  padding: 0 14px;
  border: 2px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  background: #c0c0c0;
  font-weight: bold;
  cursor: pointer;
}

.taskbar-items {
  display: flex;
  gap: 6px;
  flex: 1;
}

.task-item {
  min-width: 140px;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #c0c0c0;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  font-size: 12px;
}

.clock {
  min-width: 72px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  font-size: 12px;
}