﻿.container {
    display: flex;
    height: calc(100vh - 62px);
    margin: 0;
    padding: 24px;
    font-family: Arial, sans-serif;
    background-color: #F6F6F6;
}

#sidebar {
    width: 30%;
    overflow-y: auto;
    border-right: 2px solid #F6F6F6; /* Adding the vertical line */
}

    #sidebar .button-group {
        top: 76px;
    }

.container .content {
    width: 80%;
    overflow-y: auto;
    padding: 40px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

.api-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    padding-left: 22px;
    width: fit-content;
    position: relative;
    top: 24px; /* Adjust as needed */
}

.sidebar-index {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #4D4F53;
    width: 227px;
    height: 304px;
    position: relative; /* Assuming you want to position it absolutely */
    left: 22px;
    opacity: 1; /* Set to 0 to make the div fully transparent */
}

    .sidebar-index a {
        color: #4D4F53; /* Set the desired text color */
        text-decoration: none; /* Remove the underline */
    }

    .sidebar-index p {
        margin: 0 0 8px 0; /* Add margin-bottom to create vertical gap */
    }

    .sidebar-index a:active {
        color: #72166B; /* Change the color when the link is clicked */
    }

    .sidebar-index a.active {
        color: #72166B; /* Change the color when the link is clicked and remain */
        font-weight: 500;
    }

.footer {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 12.89px;
    letter-spacing: -0.1px;
    text-align: left;
    position: absolute;
    bottom: 4px;
    right: 24px;
    background-color: #F6F6F6;
}
