/* Windows 95 Theme */

@import url('https://fonts.cdnfonts.com/css/perfect-dos-vga-437');

body.theme-window95 {
  font-family: 'Perfect DOS VGA 437', 'MS Sans Serif', 'Tahoma', 'Geneva', sans-serif;
  background-color: #a0a0a0 !important; /* Classic Windows 95 grey */
  color: #000080;
}

body.theme-window95 #theme-switcher-btn,
body.theme-window95 #reload95-btn {
  font-family: 'Perfect DOS VGA 437', 'MS Sans Serif', 'Tahoma', 'Geneva', sans-serif;
}

body.theme-window95 .window,
body.theme-window95 .window .content {
  background: #a0a0a0 !important;
  color: #000 !important;
}

body.theme-window95 .window {
  border: 2px solid #000;
  box-shadow: inset -2px -2px #fff, inset 2px 2px #808080;
}

body.theme-window95 .title-bar {
  background: #000080;
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  cursor: grab;
  font-size: 16px;
}

body.theme-window95 .title-bar .buttons {
  display: flex;
  gap: 4px;
}

body.theme-window95 .title-bar .btn {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  background: #fff;
  border: 1px solid #888;
  border-radius: 2px;
  cursor: default;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  padding: 0;
  font-family: 'Perfect DOS VGA 437', 'MS Sans Serif', 'Tahoma', 'Geneva', sans-serif;
}

body.theme-window95 .title-bar .btn:nth-child(1)::before {
  content: "_";
  color: #222;
  font-size: 14px;
  position: relative;
  top: -2px;
}
body.theme-window95 .title-bar .btn:nth-child(2)::before {
  content: "□";
  color: #222;
  font-size: 12px;
}
body.theme-window95 .title-bar .btn:nth-child(3)::before {
  content: "✕";
  color: #222;
  font-size: 14px;
  font-family: 'Segoe UI Symbol', 'Arial', 'sans-serif';
  font-weight: bold;
  line-height: 1;
  text-shadow: 1px 1px 0 #fff, 0 0 2px #000;
  display: block;
  width: 100%;
  text-align: center;
}

body.theme-window95 .content {
  padding: 10px;
  font-size: 14px;
  white-space: pre-wrap;
  min-height: 180px;
  overflow-y: auto;
}