body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "MS Sans Serif", "Segoe UI", Tahoma, sans-serif;
  overflow: hidden;
  background-color: #000000;
}
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#boot-text {
  font-family: "Courier New", monospace;
  font-size: 18px;
  text-align: left;
  width: 80%;
  max-width: 600px;
}
.desktop {
  width: 100%;
  height: 100%;
  background-color: #008080;
  position: relative;
  overflow: hidden;
}
.icon {
  width: 64px;
  height: 64px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
}
.icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
.icon-label {
  font-size: 12px;
  text-align: center;
}
.window {
  background-color: #c0c0c0;
  border: 3px outset #ffffff;
  box-shadow: 5px 5px 0 #000000;
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  min-height: 200px;
}
.title-bar {
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #ffffff;
  padding: 2px 5px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn {
  background-color: #c0c0c0;
  border: 2px outset #ffffff;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
}
.window-content {
  padding: 10px;
  flex-grow: 1;
  overflow-y: auto;
}
.menu-bar {
  background-color: #c0c0c0;
  border-bottom: 2px solid #808080;
  padding: 5px;
}
.menu-item {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  padding: 2px 5px;
}
.menu-item:hover {
  background-color: #000080;
  color: #ffffff;
}
.filter-btn,
.clear-btn {
  background-color: #c0c0c0;
  border: 2px outset #ffffff;
  color: #000000;
  padding: 2px 5px;
  margin: 2px;
  cursor: pointer;
}
.filter-btn:active,
.clear-btn:active,
.menu-item:active {
  border-style: inset;
  padding: 3px 4px 1px 6px;
}
.filter-btn.active {
  background-color: #000080;
  color: #ffffff;
}
.project,
.blog-post {
  border: 2px inset #ffffff;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #ffffff;
}
.tag {
  background-color: #c0c0c0;
  border: 1px solid #000000;
  padding: 1px 3px;
  margin-right: 3px;
  font-size: 0.9em;
}
a {
  color: #0000ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
#start-button {
  background-color: #c0c0c0;
  border: 2px outset #ffffff;
  padding: 2px 10px;
  margin-right: 10px;
  cursor: pointer;
}
#clock {
    margin-right: 20px;
    margin-left: auto;
}
.file-explorer {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.file-list {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.file-item {
  width: 80px;
  height: 80px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.file-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
.file-name {
  font-size: 12px;
  text-align: center;
}
.window {
  position: absolute;
  min-width: 200px;
  min-height: 150px;
  background-color: #f0f0f0;
  border: 1px solid #999;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.title-bar {
  background-color: #0056b3;
  color: white;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
}
.window-content {
  flex-grow: 1;
  overflow: auto;
  padding: 10px;
}
.close-btn {
  cursor: pointer;
}
.resize-handle {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: se-resize;
}
.site-links a:hover {
  text-decoration: underline;
}
.bookmarks-box {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 200px;
  background-color: #f0f0f0;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  font-family: "Courier New", monospace;
}

.bookmarks-title {
  background-color: #000080;
  color: #fff;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

.bookmarks-content {
  padding: 10px;
}

.bookmark-item {
  margin-bottom: 5px;
}

.bookmark-icon {
  margin-right: 5px;
}

.bookmarks-box a {
  color: #0000ff;
  text-decoration: none;
}

.bookmarks-box a:hover {
  text-decoration: underline;
}
