.tabs {
    display: flex;
    /* border-bottom: 2px solid #ddd;
    margin-bottom: 10px; */
 width: fit-content;
 margin: 10px;
 margin-bottom: 0px;
 border-bottom: 1px solid grey;
}
.tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f9f9f9;
    font-size: 15px;
}
.tab-btn.active {
    background: #8a8888a6;
    border-top: 2px solid #007bff;
    font-weight: bold;
}
.tab-content {
    display: none;
 
    /* padding: 15px; */
    background: #fff;
    position: relative;
}
.tab-content.active {
    display: contents;
}
.copy-btn {
    position: absolute;
    margin-top: 70px;
    right: 16px;
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
}


.hljs{
    background-color: white !important;
}
pre{
    margin: 10px;
    margin-top: 0px;
  }

  h2 {
    margin-bottom: 0;
    margin: 10px;
}

code {
    border: 1px solid #c6bebe;
    font-size: 17px;
}