body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Geneva", "Charcoal", sans-serif;
  background: url("../img/wallpaper.webp") center center fixed;
  background-repeat: repeat;
  background-size: 10%;
  background-color: #61649C;
  color: black;
  user-select: none;
  font-size: 0.75em;
  -webkit-font-smoothing:none;
}

#menubar {
  background: #c0c0c0;
  border-bottom: 2px solid #808080;
  padding: 2px 6px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menubar .menu {
  margin-right: 12px;
  cursor: default;
  position: relative; /* for dropdown positioning */
  display: inline-block;
  padding: 0px 0px;
}

#menubar .menu:hover {
  background: #000080;  /* classic highlight */
  color: #fff;
}

#menubar .menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #c0c0c0;
  border: 2px solid #808080;
  min-width: 140px;
  z-index: 1000;
  box-shadow: 2px 2px 0 #404040;
}

#menubar .menu .dropdown div {
  padding: 3px 8px;
  white-space: nowrap;
}

#menubar .menu .dropdown div:hover {
  background: #000080;
  color: #fff;
}

#clock {
  font-size: 12px;
}

#desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px;
}

.desktop-icon {
  width: 64px;
  height: 55.5px;
  text-align: center;
  margin: 10px;
  cursor: default;
}

.desktop-icon span {
    background-color: #D0D0E1;
}

.desktop-icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

.window {
  position: absolute;
  background: #e0e0e0;
  border: 2px solid #808080;
  box-shadow: inset -1px -1px #404040, inset 1px 1px #ffffff;
  width: 400px;
  min-height: 200px;
  top: 120px;
  left: 120px;
  z-index: 5;
}

.hidden {
  display: none;
}

.window .title-bar {
  background: #d0d0d0;
  padding: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: move;
  font-size: 12px;
  border-bottom: 1px solid #808080;
}

.title-bar-buttons {
  display: flex;
  gap: 3px;
}

.title-bar-buttons div {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  background: #c0c0c0;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
  cursor: pointer;
}

.window-content {
  padding: 10px;
  font-size: 13px;
}

.window-content p {
  margin: 0;
}

.center { 
  text-align: center;
}