/* Body and overall background */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #b5c7d5; /* Classic blue/gray desktop background */
  cursor: url('mermaid-cursor.png'), auto; /* Custom mermaid tail cursor */
}

/* Desktop container */
.desktop {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('desktop-background.png'); /* Custom desktop background image */
  background-size: cover;
  overflow: hidden;
}

/* Icons on the desktop */
.icon {
  position: absolute;
  bottom: 50px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  color: white;
}

.icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
}

/* Menu bar at the top */
.menu-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2b4b6b;
  padding: 5px;
  font-size: 16px;
  color: white;
  text-align: center;
}

.menu-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-bar li {
  display: inline;
  margin: 0 20px;
  cursor: pointer;
}

/* Window styling */
.window {
  position: absolute;
  width: 300px;
  height: 200px;
  background: #fff;
  border: 2px solid #aaa;
  border-radius: 10px;
  display: none;
}

.window-header {
  background: #6b8ba4;
  color: white;
  padding: 10px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.window-content {
  padding: 20px;
  color: #333;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 5px;
}

.close-btn:hover {
  color: red;
}

/* Draggable window functionality */
.window.dragging {
  z-index: 100;
  cursor: move;
}
