body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1C1B1B;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .victim,
  .hacker {
    width: 50%;
    height: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 10px;
  }
  
  .victim h2,
  .hacker h2 {
    margin-top: 0;
  }
  
  .victim p,
  .hacker p {
    margin: 0;
    margin-bottom: 20px;
  }
  
  .victim button,
  .hacker button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .victim button:hover,
  .hacker button:hover {
    background-color: #0062cc;
  }
  
  .victim p span,
  .hacker p span {
    font-weight: bold;
    color: #007bff;
  }
  
  #consoleContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 10px 0 0 0;
    overflow-y: scroll;
    height: 200px;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.2);
  }
  
  #consoleHeader {
    background-color: #f2f2f2;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #000000;
  }
  
  #console {
    padding: 10px;
    font-family: monospace;
    font-size: 12px;
    color: #333333;
  }
  