.api-container{
    & .api-doc {
      max-width: 900px;
      margin: 0 auto;
      padding:5px 20px !important;
    }
    & .container{
      padding:10px !important;
    }

    & h2 {
      margin-top: 1.5em;
      padding-bottom: 0.3em;
    }
    & h3 {
      margin-top: 1em;
      margin-bottom: 0.5em;
    }
    & p {
      margin-bottom: 1em;
    }

    & code {
      background-color: #f5f5f5;
      border: 1px solid #ccc;
      padding: 0.2em 0.4em;
      border-radius: 3px;
      margin:0 3px;
    }
    & pre {
      background-color: #f5f5f5;
      padding: 10px 20px;
      border: 1px solid #ccc;
      border-radius: 3px;
      overflow-x: auto;
      font-size: 0.95em;
      margin: 10px 0;
      display:block !important;

    }
    & table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1em;
    }
    & th, td {
      border: 1px solid #ddd;
      padding: 0.75em 1em;
      text-align: left;
    }
   &  th {
      background-color: #f8f8f8;
      font-weight: bold;
    }
   &  ul {
      list-style: disc inside;
      margin-bottom: 1em;
    }
    & li {
      margin-bottom: 0.5em;
      list-style: none;
    }
    & .api-section {
      margin-bottom: 2em;
    }

    & .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    & .copy-btn {
        background-color: var(--color-gray);
        color: #fff;
        border: none;
        border-radius: 3px;
        cursor: pointer;
    }

  }
  @media (max-width: 768px) {
  .api-container .api-doc{
  padding:5px !important;
  }
  pre{
    padding-top: 40px !important;
  }
  }
