/* Terminal Styling */
body {
    margin: 0;
    background-color: #1e1e1e;
    color: #00ff00;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    overflow: hidden;
  }
  
  #terminal-container {
    width: 90%;
    height: 90%;
    border: 2px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 15px #00ff00;
    /* overflow: auto; */
    overflow-x: hidden !important; /* Hide horizontal scrollbar */
    word-wrap: break-word;          /* Ensure long words wrap to the next line */
    word-break: break-word;         /* Break long words if necessary */
  }
  