.window {
  border: solid;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  position: absolute;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.125);
  min-width: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.windowheader {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: grab;
  justify-content: space-between;
  padding: 12px 16px;
  user-select: none;
}

.headertext {
  margin: 0px;
  color: #fff;
  font-weight: 500;
  flex-grow: 1;
}

.closebutton {
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.15s ease;
  margin-right: 16px;
}

.closebutton::before {
  content: "✕";
}

.closebutton:hover {
  background-color: #EC6B5E;
  color: #fff;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 12px;
  z-index: 999;
}

.taskbar-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.taskbar-apps {
  display: flex;
  gap: 12px;
  align-items: center;
}

.taskbar-app {
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taskbar-app:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.taskbar-app:active {
  background: rgba(255, 255, 255, 0.3);
}

#desktopApps {
  position: relative;
  width: 100%;
  height: 100%;
}

.calc-btn {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(100, 100, 100, 0.6);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.calc-btn:hover {
  background: rgba(150, 150, 150, 0.8);
  transform: scale(1.05);
}

.calc-btn:active {
  background: rgba(180, 180, 180, 0.9);
  transform: scale(0.98);
}