body {
  background-color: #c9ffcf;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
}

.window {
  border: 5px solid white;
  width: 450px;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.windowheader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.headertext {
  margin: 0;
  font-weight: bold;
  color: #333;
}

.closebutton {
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-color: #EC6B5E;
  border-radius: 16px;
  border: solid 1px rgba(0, 0, 0, 0.25);
}

.closebutton:hover {
  background-color: #ff5c5c;
}

#desktopApps {
  padding-top: 100px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.app-icon {
  pointer-events: auto;
  text-align: center;
  padding: 10px;
  width: 90px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  user-select: none;
}

.app-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.app-icon.selected {
  background-color: rgba(255, 255, 255, 0.35);
  border: 2px solid white;
  transform: scale(1.05);
}

.app-icon p {
  margin: 5px 0 0 0;
  font-size: 13px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5);
}

.logs-content-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 380px;
}

.sidebar {
  width: 150px;
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  padding-right: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.sidebar-items-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}

.sidebar-item {
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 6px;
  background: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}

.sidebar-item:hover {
  background: rgba(0, 0, 0, 0.08);
}

.sidebar-item.active {
  background: rgba(0, 0, 0, 0.15);
  border-left: 3px solid #333;
}

.main-content-area {
  flex: 1;
  padding-left: 15px;
  text-align: left;
  overflow-y: auto;
  font-family: Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.note-editor-body {
  flex: 1;
  overflow-y: auto;
}

.add-note-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  font-size: 13px;
  transition: background-color 0.2s;
}

.add-note-btn:hover {
  background-color: #45a049;
}

.delete-note-btn {
  background-color: #EC6B5E;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.delete-note-btn:hover {
  background-color: #ff5c5c;
}

.paint-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  background: rgba(0,0,0,0.03);
  padding: 8px;
  border-radius: 8px;
}

.paint-palette {
  display: flex;
  gap: 6px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

.color-swatch.active {
  transform: scale(1.15);
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.paint-canvas {
  background: white;
  border-radius: 12px;
  border: 1px solid #ddd;
  cursor: crosshair;
  touch-action: none;
}