body {
  margin: 0;
  background-color: #000;
  color: #0f0;
  font-family: monospace;
  display: flex;
  justify-content: center;
}

.console-container {
  background-color: #001f4d;
  box-shadow: 0 0 20px #000;
  border: 2px solid #444;
  width: 80%;
  display: block;
  margin-top: 0;
}

.taskbar {
  background-color: #333;
  padding: 8px 12px;
  color: #ccc;
  font-size: 14px;
  border-bottom: 1px solid #222;
}

.top-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: #001f4d;
}


.profile-pic {
  width: 225px;
  height: 180px;
  background-color: #001f4d;
  border: 1px solid #001f4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1px; /* as small as possible */
  margin-right: 12px;
  white-space: pre; /* preserve ASCII formatting */
}



.name {
  font-size: 16px;
  color: #ccc;
}

/* Reduce line spacing between h3 elements inside .name */
.name h3 {
  margin: 2px 0;
  font-size: 12px;
}

.console-body {
  padding: 20px;
  white-space: pre-wrap;
}
