body {
      margin: 0;
      padding: 0;
      font-family: 'Courier New', Courier, monospace;
      background-color: #282828;
      color: #00ff00;
      overflow: hidden;
    }
    
    #container {
      display: flex;
      height: 100vh;
      width: 100vw;
    }
    
    #terminalContainer {
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    
    #terminal {
      flex: 1;
      padding: 20px;
      padding-bottom: 80px;
      overflow-y: auto;
      white-space: pre-wrap;
    }
    
    #bannerContainer {
      font-size: 14px;
      line-height: 1.2;
      margin-bottom: 10px;
      direction: ltr;
    }
    
    #responseContainer {
      
    }
    #terminalContainer.inverted {
        background-color: #0af30b;
        color: #282828;
    }
    #terminalContainer.inverted #responseContainer{
         text-decoration: line-through; 
}
    
    .command-line {
      position: absolute;
      bottom: 0;
      width: calc(100%);
      background: #333;
      padding: 10px 20px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
    }
    .prompt {
      margin-right: 5px;
    }
    input[type="text"] {
      background: transparent;
      border: none;
      outline: none;
      color: #f3f3f3;
      font-family: 'Courier New', Courier, monospace;
      font-size: 16px;
      flex: 1;
    }
    
    #sidebar {
      width: 250px;
      background: #1e1e1e;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto;
      border-left: 1px solid #333;
    }
    #sidebar h3 {
      margin-top: 0;
      color: #ff8000;
    }
    #sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    #sidebar li {
      margin: 8px 0;
      font-size: 14px;
    }
    
    .command {
      margin: 0;
    }
    .output {
      margin: 0 0 10px 20px;
    }
    
    a {
      color: #0472ff;
      text-decoration: none;
      cursor: pointer;
    }
    
    .typing-cursor {
      display: inline-block;
      background-color: #00ff00;
      width: 10px;
      margin-left: 2px;
      animation: blink 1s infinite;
    }
    @keyframes blink {
      0%, 50% { opacity: 1; }
      50.1%, 100% { opacity: 0; }
    }
    
    .fade-out {
      animation: fadeOut 0.5s forwards;
    }
    .fade-in {
      animation: fadeIn 0.5s forwards;
    }
    @keyframes fadeOut {
      from { opacity: 1; }
      to { opacity: 0; }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @media (max-width: 600px) {
      #container {
        flex-direction: column;
      }
      #sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #333;
      }
      .command-line {
        width: calc(100% - 40px);
      }
    }
   #modalOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 1000;
    }
    #modalWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #282828;
    color: #0af30b;
    border: 2px solid white;
    padding: 20px;
    width: 300px;
    box-shadow: 5px 5px 0 #000;
    }
    #modalWindow h2 {
      margin-top: 0;
      font-size: 18px;
      text-align: center;
    }
    #modalWindow .button-container {
      margin-top: 20px;
      text-align: center;
    }
    #modalWindow button {
    margin: 5px;
    padding: 8px 12px;  
    border: 1px solid #000;
    background: #282828;
    color: white;
    cursor: pointer;
    box-shadow: 3px 3px 0 #000;
    }
	
	::-moz-selection { /* Code for Firefox */
	color: #000;
	background: #f3f3f3;
	}

	::selection {
	color: #000;
	background: #f3f3f3;
	}


/* hide scrollbar but allow scrolling */
div {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll; 
}

div::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}