/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
  }
  
  body {
    background-color: #1e1e1e;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    display: flex;
  }
  
  main {
    flex: 1;
  }
  
  /* Styles for terminal */
  #terminal-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Add border */
  }
  
  
  #terminal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #1c1c1c;
    height: 40px;
  }
  
  #terminal-header .close,
  #terminal-header .minimize,
  #terminal-header .zoom {
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
  }
  
  #terminal-header .close {
    background-color: #ff5f56;
  }
  
  #terminal-header .minimize {
    background-color: #ffbd2e;
  }
  
  #terminal-header .zoom {
    background-color: #27c93f;
  }
  
  #terminal-body {
    width: 100%;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }
  
  #terminal-output {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow-y: scroll; /* Make the terminal output scrollable */
  }
  
  #terminal-output::-webkit-scrollbar {
    width: 6px;
  }
  
  #terminal-output::-webkit-scrollbar-thumb {
    background-color: #4cf9f2;
    border-radius: 3px;
  }
  
  #terminal-output p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    white-space: pre-wrap;
  }

  
  #terminal-input {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  #terminal-prompt {
    color: #4cf9f2;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 5px;
  }
  
  #terminal-textarea {
    border: white;
    resize: none;
    background-color: transparent;
    outline: white;
    color: white;
    font-size: 1.2rem;
    font-family: inherit;
    padding: 0;
    margin: 0;
    width: 100%;
    line-height: 1.5rem;
  }
  
  #terminal-textarea::selection {
    background-color: #4cf9f2;
  }
  
  #terminal-cursor {
    display: inline-block;
    width: 6px;
    height: 1.5rem;
    background-color: #4cf9f2;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  