/* LILAC THEME */

html {
    height: 100%;
  }
  body {
    margin: 0;
    padding: 10px 15px;     /* top left */
    min-height: 99%;
    width: min(1000px, 95vw);
    /* soft lavender foreground on deep violet background */
    color: #ecdcf9;
    background: #241634;
    font-family: cursor, monospace;
    overflow-x: hidden;
    font-size: min(20px, calc(1.5vw + 7px));
  }
  ::selection {
    color: #241634;
    background-color: #ecdcf9;
  }
  ::-moz-selection {
    color: #de743a;
    background-color: #519975;
  }
  textarea {
    left: -1000px;
    position: absolute;
  }
  b {
    font-weight: bold;
    text-decoration: underline;
  }
  /* Cursor Start */
  .cursor {
    font-size: 1.2vw; /*12px;*/
    color: #c992f6;
    background-color: #c992f6;
    position: relative;
    opacity: 1;
    height: 2vw + 0.5px;
    min-height: 10px;
    max-height: 22px;
    width: 1vw;
    max-width: 7px;
    /* min-height: 10px; */
    transform: translateY(4px);
    overflow: hidden;
    text-indent: -5px;
    display: inline-block;
    text-decoration: blink;
    animation: blinker 1s linear infinite;
  }
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  /* typed text before enter */
  #command {
    cursor: text;
    height: 50px;
    color: #f7e9ff;
    font-size: min(20px, calc(1.5vw + 7px));
    /* font-size: large; */
    margin-top: 15px;
  }
  #liner {
    line-height: 1.3em;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
  }
  #liner::before {
    color: #c992f6;
    font-size: min(20px, calc(1.5vw + 7px));
    content: attr(data-terminal-prompt);
  }
  /* #liner.password::before {
    content: "Password:";
  } */
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
  }
  tr td:first-child {
    padding-left: 0px;
  }
  td {
    padding: 0 5vw 1vh 0;
  }
  
  /* Cursor End */
  p {
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    /* white-space: nowrap; */
    margin: 0;
    letter-spacing: 0.05em;
    animation: typing 0.5s steps(30, end);    /* characters appearing from left to right */
    /* font-size: calc(2vw + 7px); */
    font-size: min(20px, calc(1.5vw + 7px));
  }
  .terminal-banner {
    white-space: nowrap;
    /* font-size: min(20px, calc(1vw));         1.4vw */
    font-size: clamp(5px, calc(1vw), 15px);
    font-weight: bolder;
    /* Adds subtle glow */
    color: #c992f6;
    text-shadow: 0 0 8px #c992f6;
  }
  .terminal-welcome-msg {
    font-size: min(20px, calc(1.5vw + 7px));
  }
  .no-animation {
    animation: typing 0 steps(30, end);
  }
  .margin {
    margin-left: 3%;
    margin-right: 3%;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .index {
    color: #f7e9ff;
  }
  /* For main texts */
  .color2 {
    /* main text color */
    color: #ecdcf9;
  }
  /* Commands within text with glow */
  .command {
    color: #c992f6;
    text-shadow: 0 0 6px #c992f6; 
  }
  .error {
    color: #ff6b81;
  }
  .white {
    color: #ffffff;
  }
  /* terminal output and links */
  .inherit, 
  a {
    color: #e7d0ff;
  }
  a {
    text-decoration: inherit;
  }
  a:hover {
    background: #c992f61f;
    color: #ffffff;
  }
  a:focus {
    outline: 0;
  }

  /* Banner image layout */
  .terminal-banner .banner-images {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
  }
  .terminal-banner .banner-char {
    height: 56px;
    image-rendering: pixelated;
  }
  .terminal-banner .banner-space {
    display: inline-block;
    width: 20px;
  }
  .terminal-banner .banner-char-fallback {
    display: inline-block;
    padding: 0 4px;
  }

  /* Copyright badge */
  #copyright-badge {
    position: fixed;
    top: 8px;
    right: 14px;
    font-size: 12px;
    color: #e7d0ff;
    opacity: 0.7;
    pointer-events: none;
  }

  /* Generator link highlight */
  .terminal-generator-link {
    position: relative;
    color: #c992f6;
    text-shadow: 0 0 6px #c992f6;
    animation: blinker 1s linear infinite;
  }