/* =========================
   ESTILO WINDOWS 95
   ========================= */
@font-face {
  font-family: "WinRetro";
  src: url("/media/fonts/W95FA.otf?#iefix") format("truetype");
}

body {
  margin: 0;
  min-height: 100vh;
  background: #008080;
  display: flex;
  text-align: justify;
  justify-content: center;
  align-items: center;
  font-family: "WinRetro", Tahoma, Arial, sans-serif;
  color: black;
}

/* Contenedor principal */
.layout {
  display: flex;
  gap: 20px;
}

/* Ventana base */
.panel {
  background: #c0c0c0;
  padding: 2px;                 /* grosor del marco */
  box-sizing: border-box;

  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #404040;
  border-right: 2px solid #404040;
}

.window {
  background: #c0c0c0;
}

/* Tamaños */
.left,
.right {
  width: 180px;
}

.center {
  width: 420px;
}


/* Links clásicos */
a {
  color: #000080;
  text-decoration: underline;
}

/* Listas compactas */
ul {
  padding-left: 20px;
  margin: 5px 0 0 0;
}

p {
  margin: 6px 0;
}

.content {
  padding: 10px;
}

/* ======================
   BARRA DE TÍTULO WIN95
   ====================== */

.title-bar {
  background: #000080;
  color: white;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 3px;
  font-size: 12px;
  box-sizing: border-box;
}

.title-text {
  margin: 0 0 0px 0;
  font-size: 16px;
  font-weight: bold;
}

/* Contenedor botones */
.window-buttons {
  display: flex;
  gap: 2px;
}

/* Botón base */
.win-btn {
  width: 16px;
  height: 14px;
  padding: 0;
  font-size: 10px;
  font-family: "WinRetro", Tahoma, Arial, sans-serif;
  line-height: 12px;
  text-align: center;
  background: #c0c0c0;
  cursor: pointer;

  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #404040;
  border-right: 1px solid #404040;
}

/* Efecto presionado */
.win-btn:active {
  border-top: 1px solid #404040;
  border-left: 1px solid #404040;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

/* Botón cerrar (X) */
.win-btn.close {
  font-weight: bold;
}

