
body {
  margin: 0;
  padding: 0;
  background-color: #008080;
  font-family: 'w95fa', sans-serif;
  color: black;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.window {
  position: absolute;
  width: 280px;
  background-color: #c0c0c0;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px #000;
  z-index: 5;
}

.title-bar {
  background-color: #000080;
  color: white;
  padding: 3px 6px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar .window-controls {
  height: 16px;
  width: 55px;
}

.content {
  padding: 10px;
  background-color: white;
  font-size: 13px;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 12px;
  background-color: #ccc;
  margin-bottom: 10px;
  border: 1px solid #000;
  overflow: hidden;
}

#progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #0000ff;
  z-index: 1;
}

.segments {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
}

.segment {
  flex: 1;
  border-right: 1px solid white;
}

.timer {
  top: 10px;
  left: 10px;
  width: 200px;
  z-index: 999;
}

.message {
  top: 190px;
  right: 100px;
  width: 350px;
  z-index: 500;
}

.password {
  bottom: 150px;
  left: 70%;
  transform: translateX(-50%);
  width: 280px;
  z-index: 99;
}

.image-popup {
  position: absolute;
  width: 750px;
  background-color: #c0c0c0;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px #000;
  opacity: 0;
  animation: fadeIn 0.2s ease-in forwards;
}

.image-popup .title-bar {
  background-color: #000080;
  color: white;
  padding: 3px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-popup img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.taskbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background-color: #c0c0c0;
  border-top: 2px solid white;
  border-bottom: 2px solid #404040;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px !important;
  font-size: 13px;
  z-index: 3;
}

.left-section {
  display: flex;
  gap: 4px;
}

.start, .tab, .clock {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-style: solid;
  border-width: 2px;
  font-family: 'w95fa', sans-serif;
}

.start, .tab {
  border-color: white #404040 #404040 white;
  background-color: #dfdfdf;
}

.clock {
  border-color: #404040 white white #404040;
  background-color: #c0c0c0;
}

.clock img {
  height: 16px;
}
