.terminal {
    background: #1e1e1e;
    color: #ccc;
    font-family: monospace;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
  }
  
  .terminal-header {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  .red { background: #ff5f56; }
  .yellow { background: #ffbd2e; }
  .green { background: #27c93f; }
  
  .terminal-body {
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  .prompt {
    color: #5AE4A8;
    margin-right: 4px;
  }
  