/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Tahoma, Verdana, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  background: #c0c0c0;
  min-height: 100vh;
}

a {
  color: #000080;
  text-decoration: underline;
}

a:hover {
  color: #cc0000;
}

a:visited {
  color: #800080;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 24px;
}

ul { list-style: square; }
ol { list-style: decimal; }

code, pre {
  font-family: "Courier New", "Lucida Console", Consolas, monospace;
  font-size: 13px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
  font-family: Tahoma, Verdana, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
}

input, textarea, select {
  font-family: Tahoma, Verdana, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
}

/* ─── Win95 Bevel Borders ──────────────────────────────── */
.win95-raised {
  border: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  background: #c0c0c0;
}

.win95-sunken {
  border: 2px solid;
  border-color: #808080 #dfdfdf #dfdfdf #808080;
  background: #fff;
}

.win95-field {
  border: 2px inset #808080;
  background: #fff;
  padding: 2px 4px;
}

.win95-button {
  border: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  background: #c0c0c0;
  padding: 4px 16px;
  font-family: Tahoma, Verdana, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  color: #000;
}

.win95-button:active {
  border-color: #808080 #dfdfdf #dfdfdf #808080;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: #c0c0c0;
  border: 2px inset #808080;
}

::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
}