/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: monospace;
  background: #f7f7f7;
  color: #111;
  height: 100vh;
  overflow: hidden; /* 🚫 sin scroll */
}

/* APP LAYOUT */
.app {
  display: flex;
  height: 100vh;
}

/* PERFIL SIEMPRE VISIBLE */
.perfil {
  width: 220px;
  background: #ffffff;
  border-right: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
}

.perfil img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.perfil h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

.perfil p {
  font-size: 13px;
  color: #666;
}

.perfil span {
  font-size: 12px;
  color: #999;
}

/* TERMINAL */
.terminal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* OUTPUT */
#output {
  flex: 1;
  overflow: hidden; /* 🚫 sin scroll */
}

/* TARJETAS */
.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* IMAGENES PEQUEÑAS */
img {
  max-width: 120px;
  border-radius: 6px;
  margin-top: 5px;
}

/* LINKS */
a {
  color: #0077ff;
  text-decoration: none;
  font-size: 13px;
}

a:hover {
  text-decoration: underline;
}

/* INPUT LINEA TERMINAL */
.input-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
}

/* SIMBOLO > */
.input-line span {
  color: #555;
}

/* INPUT INVISIBLE (CLI REAL) */
.input-line input {
  border: none;
  outline: none;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  caret-color: #111;
}

/* QUITAR ESTILO NATIVO FEO */
input {
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}