html {
    box-sizing: border-box;
    /* overflow: -moz-scrollbars-vertical;
    overflow-y: scroll; */
    height: 100%;
    overflow: hidden;
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: #fafafa;
    height: 100%;
    overflow: hidden;
}

/* .url {
    display: none !important;
} */

#custom-container {
    display: flex;
    font-family: "Source Sans Pro", sans-serif;
    height: 100%;
}
  
#toggle-button {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1000;
    background: #3b4151;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    font-size: 20px;
}

#sidebar {
    height: 100%;
    width: 300px;
    background-color: #fafafa;
    border-right: 1px solid #e4e4e4;
    padding: 50px 16px;
    box-shadow: inset -1px 0 0 #d8d8d8;
    transition: transform 0.3s ease;
    overflow: hidden;
}

#sidebar h2 {
    font-size: 24px;
    color: #3b4151;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
} 

#sidebar.hidden {
    display: none;
}

#sidebar:hover {
    overflow-y: auto;
}
  
#swagger-ui {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    margin: 16px 0;
}

#api-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
  
#api-links a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    color: #344054;
    background-color: #fafafa;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

#api-links a:hover {
    background-color: #f0f4f8;
    color: #1d4ed8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}