/* xp.css - CSS2 compatible */
body {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  margin: 0;
  background: #0050a0; /* fondo escritorio por defecto (puedes cambiar la imagen en index) */
  color: #000;
  font-size: 12px;
}

/* Barra de tareas (verde estilo XP) */
#taskbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  background: #1f5f1f; /* verde oscuro similar al XP real */
  border-top: 1px solid #000;
  padding: 4px;
  color: #fff;
  z-index: 1000;
}
#start {
  display: inline-block;
  vertical-align: top;
  width: 110px;
  height: 26px;
  background: #4faa4f; /* verde claro */
  border: 2px solid #0b3e0b;
  padding: 2px 8px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 20px;
}
#quick {
  float: right;
  margin-right: 10px;
  font-size: 12px;
  line-height: 26px;
  color: #fff;
}

/* Start menu */
#startmenu {
  display: none;
  position: fixed;
  bottom: 42px;
  left: 4px;
  width: 220px;
  background: #d6efd6;
  border: 2px solid #0b3e0b;
  font-size: 12px;
  z-index: 1200;
}
.start-header {
  background: #0b5a0b;
  color: #fff;
  font-weight: bold;
  padding: 6px;
}
.start-item {
  padding: 5px 10px;
  border-bottom: 1px solid #aab;
  cursor: pointer;
  background: #f3fff3;
}
.start-item a { color: #0b3e0b; text-decoration: none; }
.start-item:hover { background: #c6f7c6; }

/* Common page content */
.container {
  padding: 18px;
  padding-bottom: 72px; /* space for taskbar */
  color: #fff;
}

/* Window-like panel */
.window {
  width: 760px;
  border: 2px solid #0b3e0b;
  background: #fff;
  margin: 12px auto;
  color: #000;
}
.titlebar {
  background: #0b5a0b;
  color: #fff;
  height: 28px;
  padding: 4px 8px;
  font-weight: bold;
  line-height: 20px;
}

/* Explorer layout */
.explorer {
  padding: 10px;
}
.side {
  float: left;
  width: 180px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
}
.mainpane {
  margin-left: 200px;
  min-height: 200px;
}
.folder, .file {
  padding: 6px 0;
  border-bottom: 1px dotted #ddd;
  cursor: default;
}
.link {
  color: #0645ad;
  text-decoration: none;
}
.clearfix { clear: both; height: 0; line-height: 0; font-size: 0; }

/* Small buttons consistent */
.btn {
  background: #d6efd6;
  border: 1px solid #0b3e0b;
  padding: 2px 6px;
  cursor: pointer;
  font-size: 12px;
  color: #0b3e0b;
}
.link {
  display: inline-block;
  text-decoration: none;
  color: black; /* o el color que uses */
  font-family: Tahoma, sans-serif;
  font-size: 12px;
  margin-top: 6px;
}
link1 {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-family: Tahoma, sans-serif;
  font-size: 12px;
  margin-top: 6px;
}

.link1:visited {
  color: white;
  background: white;
  text-decoration: none; /* sin subrayado al estar visitado */
}

/* Footer note */
.note { font-size:11px; color:#eee; }
