body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    overflow: hidden;
}

.terminal {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

#output {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.input-line {
    display: flex;
}

.prompt {
    margin-right: 10px;
}

#input {
    background-color: transparent;
    border: none;
    color: #00ff00;
    outline: none;
    flex-grow: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 12px; 
    height: 12px; 
  }
  
  ::-webkit-scrollbar-track {
    background: #1a1a1a; 
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #00ff00; 
    border-radius: 10px;
    border: 3px solid #1a1a1a; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
  }
  
 
  * {
    scrollbar-width: thin; 
    scrollbar-color: #00ff00 #1a1a1a; 
  }