body {
  font-family: Helvetica, "Noto Sans", sans-serif;
  margin: 0;
  min-height: 100vh;
  background-image: url("2fort_invasion.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.topbar {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.125);
  color: #fff;
  padding: 8px 16px;
  box-sizing: border-box;
}

.topbar-text,
.topbar-note,
#timeElement {
  margin: 0;
  padding: 4px 12px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.125);
}

.topbar-text {
  font-weight: 700;
}

.topbar-note {
  position: absolute;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.25);
}

#timeElement {
  position: absolute;
  right: 16px;
}

.window {
  border: solid;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  position: absolute;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background-color: rgba(172, 172, 172, 0.6);
}

.windowheader {
  display: flex;
  align-items: center;
  cursor: grab;
  justify-content: space-between;
  margin: 16px 16px 32px;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.windowheader .header-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
}

.window-title {
  margin: 0;
  font-family: "Space Grotesk", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.window-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 24px;
  font-family: "Space Grotesk", Helvetica, sans-serif;
  letter-spacing: 0.2px;
}

.window-content h2 {
  font-family: "Space Grotesk", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h2 {
  margin: 0 0 12px;
}

.profile-image {
  width: 128px;
  height: 128px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.desktop-icons {
  position: absolute;
  top: 72px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  font-family: "Space Grotesk", Helvetica, sans-serif;
  user-select: none;
}

.desktop-icon-glyph {
  font-size: 40px;
  line-height: 1;
}

.desktop-icon-label {
  margin-top: 6px;
  padding: 2px 6px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.desktop-icon.selected {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.desktop-icon.selected .desktop-icon-label {
  background-color: rgba(0, 102, 204, 0.85);
  text-shadow: none;
}

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

/* Notes App Styling */
#notes .window-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

#notes .window-content h2 {
  color: #fff;
}

#notes .window-content p {
  color: #fff;
}

#sidebar {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

#sidebar > div {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#sidebar > div:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

#notesContent {
  color: #fff;
}

