/* — Reset & Base — */

/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}*/

img {
  width: 10px; 
  height: 10px;
  max-width: 100%;
}

body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #0078D4; /* Win11 default blue */
  background-image: url('wallpaper.jpg');
}

/* — Desktop Icons Grid — */
.desktop {
  display: grid;
  grid-template-columns: repeat(auto-fill, 80px);
  gap: 20px;
  padding: 20px;
  position: absolute;
  top: 0; left: 0;
}
.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/*.icon img {
  width: 48px;
  height: 48px;
} */

.icon span {
  margin-top: 6px;
  font-size: 12px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  text-align: center;
}

/* — Taskbar — */
.taskbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 32, 32, 0.5);
  /*backdrop-filter: blur(10px);*/
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Center group */
.tb-center {
  display: flex;
  gap: 12px;
}

.tb-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

/*.tb-btn img {
  width: 20px; height: 20px;
}*/

.tb-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Tray (right‑aligned) */

.tb-tray {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/*.tb-tray img {
  width: 18px; height: 18px;
  cursor: pointer;
}*/

.clock {
  font-size: 13px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

