/* Global body */
body {
  background: #c0c0c0; /* gris Win95 */
  font-family: "Tahoma", "MS Sans Serif", sans-serif;
  color: black;
  margin: 0;
  padding: 10px;
}

/* Fenêtres */
.window {
  border: 2px solid #ffffff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  background: #d4d0c8;
  padding: 8px;
  margin: 20px auto;
  width: 80%;
  box-shadow: inset -2px -2px #808080, inset 2px 2px #ffffff;
}

/* Title bars style Windows 95 */
.title-bar {
  background: linear-gradient(to right, #000080, #1084d0);
  color: white;
  font-weight: bold;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar-text {
  font-size: 14px;
}

.title-bar-controls button {
  background: #c0c0c0;
  border: 2px solid #ffffff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  width: 16px;
  height: 16px;
  margin-left: 2px;
  padding: 0;
  cursor: pointer;
}

.title-bar-controls button:active {
  border: 2px solid #404040;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Buttons */
button, .btn {
  font-family: inherit;
  font-size: 12px;
  background: #d4d0c8;
  border: 2px solid #ffffff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  padding: 2px 6px;
  margin: 2px;
}

button:active, .btn:active {
  border: 2px solid #404040;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Links like old-school blue */
a {
  color: #0000ee;
  text-decoration: underline;
}

a:visited {
  color: #551a8b;
}

/* Toolbars with icons */
.toolbar {
  background: #d4d0c8;
  border: 2px solid #ffffff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  padding: 4px;
  display: flex;
  gap: 6px;
}

/* Fake icons */
.icon {
  width: 32px;
  height: 32px;
  background: #808080;
  display: inline-block;
  border: 1px solid #404040;
  box-shadow: inset 2px 2px #c0c0c0, inset -2px -2px #404040;
}

/* Status bar */
.status-bar {
  background: #d4d0c8;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #808080;
  padding: 2px 6px;
  font-size: 12px;
  color: #000;
}