/* styles.css */
body {
    background-color: #2d2d2d;
    color: #ebdbb2;
    font-family: monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .terminal {
    background-color: #1d2021;
    border-radius: 5px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .terminal-header {
    background-color: #3c3836;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .buttons {
    display: flex;
    gap: 5px;
  }
  
  .button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .button.close { background-color: #cc241d; }
  .button.minimize { background-color: #d79921; }
  .button.maximize { background-color: #689d6a; }
  
  .title {
    color: #a89984;
    font-size: 14px;
  }
  
  .terminal-body {
    padding: 10px;
    height: 700px;
    overflow-y: auto;
  }
  
  .output {
    white-space: pre-wrap;
    margin-bottom: 10px;
    color: #ebdbb2;
  }
  
  .menu {
    margin-top: 10px;
  }
  
  .menu-item {
    padding: 5px;
    cursor: pointer;
    color: #ebdbb2;
  }
  
  .menu-item.selected {
    background-color: #3c3836;
    color: #d65d0e;
  }
  
  .arrow {
    margin-right: 5px;
    color: #d65d0e;
  }

  .info-section {
	  margin-top: 20px;
  }
  
  .info-label {
	  color: #d79921; /* Gruvbox yellow */
	  font-weight: bold;
	  margin-bottom: 5px;
  }
  
  .info-content {
	  margin-left: 20px;
	  color: #ebdbb2; /* Gruvbox foreground */
  }
  
  .info-content div {
	  margin: 5px 0;
  }  
