code {
    position: relative;
    display: block;
    padding: 0.5rem;
    margin: 0.5rem 0;
    background-color: #1e1e1e;
    border-radius: 4px;
    color: #e6e6e6;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    line-height: 1.5;
    white-space: pre-wrap;
  }
  
  .command-prompt::before {
    content: "$ ";
    color: #66c2cd;
    user-select: none;
  }
  .copy-button {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .copy-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .copy-button.copied {
    background-color: #28a745;
  }

  pre {
    padding: 1rem;
    border-radius: 0.25rem;
    overflow-x: auto;
    color: #fff;
}

.bg-primary {background: #3979AC !important}