.tooltip {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .tooltip-content h2 {
    margin-top: 0;
    color: #333;
  }
  
  .tooltip-description {
    margin: 20px 0;
  }
  
  .tooltip-link {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
  }
  
  .tooltip-code {
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 10px;
  }
  
  .copy-tooltip-code {
    background: #0071b8;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .copy-tooltip-code:hover {
    background: #005689;
  }
  
  .tooltip-metadata {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
  }
  
  pre {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-family: monospace;
  }

  .tooltip-description-container {
    max-width: 400px;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: visible;
    position: relative;
    z-index: 1;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 4px;
    text-align: center;
  }
