.code-container {
    position: relative;
    margin: 15px 0 !important;
    background: #ffffff;
    border-radius: 5px;
    padding: 10px !important;
    overflow-x: auto;
    width: 70% !important;
  }
  
  @media (min-width: 1200px) {
    .code-container {
      width: 97% !important;
    }
  }
  .code-container pre {
    margin: 0 !important;
    padding-top: 10px !important;
    border: none;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  .code-buttons {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .code-buttons button {
    padding: 5px 10px !important;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px !important;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .code-buttons button:hover {
    background: #e0e0e0;
    border-color: #999;
  }