* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;
  background-image: url("https://aquaforest.eu/wp-content/uploads/2025/06/blazenek-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
}

#desktopApps {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.desktop-icon {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 100;
}

.desktop-icon-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.desktop-icon-label {
  color: white;
  text-align: center;
  font-size: 12px;
  text-shadow: 1px 1px 3px black;
}

.window {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 400px;
  height: 300px;
  overflow: hidden;
  background: white;
  border: 1px solid #808080;
  border-radius: 4px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.windowheader {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: #d9d9d9;
  border-bottom: 1px solid #a0a0a0;
  color: black;
  font-weight: bold;
  cursor: move;
  user-select: none;
}

.windowcontent {
  flex: 1;
  background: white;
  color: black;
  overflow: auto;
  padding: 12px;
}

.windowclose {
  width: 22px;
  height: 22px;
  border: 1px solid #888;
  border-radius: 2px;
  background: #f0f0f0;
  color: black;
  cursor: pointer;
  font-size: 14px;
}

.windowclose:hover {
  background: #e0e0e0;
  opacity: .9;
}

.taskbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
  color: white;
  z-index: 9999;
}

.taskbar-label {
  margin-right: auto;
}

.time {
  font-size: 14px;
}

.fish-card {
  margin-bottom: 20px;
}

.fish-card img {
  width: 100%;
  border-radius: 6px;
  margin-top: 5px;
}

.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.wallpaper-option {
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.wallpaper-option:hover {
  border-color: #4CAF50;
  transform: scale(1.05);
}

.wallpaper-option.selected {
  border-color: #2196F3;
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.wallpaper-option img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.wallpaper-option-name {
  padding: 8px;
  background: #f0f0f0;
  text-align: center;
  font-size: 12px;
  color: black;
}

#fileExplorerIcon {
  position: absolute;
  top: 20px;
  left: 20px;
}

#wallpaperIcon {
  position: absolute;
  top: 120px;
  left: 20px;
}

#fishTranslatorWindow {
  width: 500px;
  height: 400px;
  top: 300px;  
  left: 20px;
}


#translatorInput {
  box-sizing: border-box;
  border: 1px solid #ddd !important;
}

#translatorOutput {
  background-color: transparent;
  border: none;
}
  

#translatorIcon {
  position: absolute;
  top: 220px;
  left: 20px;
}




