body {
  margin: 0;
  background: url("assets/wallpapers/win98.png") no-repeat center center fixed;
  background-size: cover;
  font-family: Tahoma, sans-serif;
}

/* =======================
   DESKTOP ICON COLUMN
======================= */

.icon-column {
  position:fixed;
  left:15px;
  top:15px;
  display:grid;
  grid-template-columns: repeat(7, 80px);
  grid-auto-rows: 95px;
  gap:16px;
}


.desktop-icon {
  width: 72px;
  color: white;
  text-align: center;
  cursor: pointer;
  padding: 3px;
  user-select: none;
}

.desktop-icon img {
  width: 48px;
  height: 48px;
  image-rendering: pixelated;
}

.desktop-icon span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-shadow: 1px 1px black;
}

/* Selected desktop icon */
.desktop-icon.selected {
  background: rgba(0, 120, 215, 0.6);
  outline: 1px dotted white;
}

/* Hover effect */
.desktop-icon:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =======================
   TASKBAR
======================= */

.taskbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #c0c0c0;
  padding: 4px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.taskbar button {
  border: 2px outset white;
  background: #c0c0c0;
  padding: 2px 6px;
  cursor: pointer;
}

.taskbar button:active {
  border: 2px inset white;
}

.traylinks a {
  margin-left: 10px;
  color: black;
  text-decoration: none;
}

.traylinks a:hover {
  text-decoration: underline;
}

/* =======================
   WINDOWS
======================= */

.window {
  position: fixed;
  background: #f0f0f0;
  border: 3px solid black;
  width: 340px;
  height: 260px;
  display: none;
  top: 110px;
  left: 200px;
  box-shadow: 4px 4px black;
}

.title-bar {
  background: #000080;
  color: white;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  cursor: move;
  font-size: 12px;
}

.title-bar span {
  cursor: pointer;
  padding: 0 4px;
}

.title-bar span:hover {
  background: red;
}

/* =======================
   CONTENT
======================= */

.content {
  padding: 8px;
  font-size: 12px;
  overflow: auto;
  height: calc(100% - 24px);
}

#datetime {
  margin-left: auto;
  font-size: 12px;
}

/* =======================
   GITHUB WINDOW
======================= */

iframe {
  width: 100%;
  height: calc(100% - 24px);
  border: none;
}
.window {
  resize: both;
  overflow: auto;
  min-width: 220px;
  min-height: 160px;
}
.start-btn {
  background:#c0c0c0;
  border:2px outset white;
  padding:4px 10px;
  margin-right:6px;
  font-weight:bold;
  cursor:pointer;
}

.task-links {
  display:flex;
  gap:8px;
}

.task-links a {
  background:#e0e0e0;
  color:black;
  padding:4px 8px;
  border:2px outset white;
  font-size:12px;
  text-decoration:none;
}

.task-links a:active {
  border:2px inset gray;
}

#datetime {
  margin-left:auto;
  padding-right:10px;
}
#desktop {
  display: flex;
  padding: 15px;
  gap: 40px;
}

#left-icons {
  position: fixed;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#right-icons {
  position: fixed;
  top: 15px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(3, 90px);
  grid-auto-rows: 90px;
  gap: 20px;
}


