/* styles.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
}

.futuristic-art {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: auto;
  z-index: 0;
}

#draggable, #draggable2, #draggable3, #draggable4 {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 2px solid #d4d0c8;
  background-color: #c0c0c0;
  font-family: 'MS Sans Serif', Geneva, sans-serif;
  box-shadow: 1px 1px 0 #ffffff, 2px 2px 0 #d4d0c8, -1px -1px 0 #000000;
  width: 300px;
  box-sizing: border-box;
}

/* Title bar styling */
#draggable header, #draggable2 header, #draggable3 header, #draggable4 header {
  background: #000080;
  color: white;
  padding: 3px 5px;
  font-weight: bold;
  cursor: move;
  position: relative;
  box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #000;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Inactive window title bar styling */
.inactive-window {
  background: #808080 !important;
  color: #d3d3d3 !important;
}

/* Notification box content */
.notification-box, .notification-box2 {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #d4d0c8;
  background: #c0c0c0;
  padding: 5px;
  box-shadow: 1px 1px 0 #ffffff, 2px 2px 0 #d4d0c8, -1px -1px 0 #000000;
  font-family: 'MS Sans Serif', Geneva, sans-serif;
  width: 300px;
  box-sizing: border-box;
}

.notification-box3 {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.close-btn, .minimize-btn {
  position: absolute;
  top: 3px;
  right: 5px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  color: black;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #000;
  background-color: #c0c0c0;
  user-select: none;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #808080;
}

.minimize-btn {
  right: 25px;
}

.close-btn:hover, .minimize-btn:hover {
  color: white;
  background-color: #000080;
  box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #ffffff;
}

.close-btn:active, .minimize-btn:active {
  color: black;
  background-color: #ffffff;
  box-shadow: inset -1px -1px 0 #ffffff, inset 1px 1px 0 #808080;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #C0C0C0;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
  font-family: 'MS Sans Serif', Geneva, sans-serif;
  box-sizing: border-box;
  margin: 0;
}

.taskbar-btn {
  background: #c0c0c0;
  color: black;
  border: 1px solid #000;
  padding: 3px 8px;
  margin-right: 10px;
  font-family: 'MS Sans Serif', Geneva, sans-serif;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.taskbar-btn:hover {
  background: #a0a0a0;
}

.system-tray {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.system-tray .time {
  font-family: 'MS Sans Serif', Geneva, sans-serif;
  background: #C0C0C0;
  padding: 2px 5px;
  margin-left: 10px;
  border: 1px solid #000;
  box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.play-video-btn {
  background: #c0c0c0;
  border: none;
  padding: 3px 8px;
  cursor: pointer;
}

/* Additional styles for other elements if necessary */