

body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .terminal {
    width: 80%;
    max-width: 800px;
    background-color: #000;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #00ff00;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .terminal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  
  .terminal-header span {
    cursor: pointer;
    font-size: 20px;
    color: #00ff00;
    margin-left: 10px;
  }
  
  .output {
    flex: 1;
    margin-top: 10px;
    padding: 10px;
    background-color: #001f00;
    border-radius: 5px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 14px;
  }
  
  .input-line {
    display: flex;
    align-items: center;
  }
  
  .input-line span {
    color: #00ff00;
    margin-right: 5px;
  }
  
  .input-line input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    width: calc(100% - 20px);
  }
  
  /* Fullscreen mode */
  .fullscreen {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px;
  }
  
  /* Scrollbar style */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #000;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #003f00;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #005f00;
  }
  
  .draggable {
    cursor: move;
    position: absolute;
    z-index: 1000; /* Ensures it's above other elements */
  }
  