html {
    box-sizing: border-box;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

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

body {
    margin: 0;
    background: #fafafa;
}

/* Hide the topbar (removes the Explore bar) */
.topbar { 
    display: none !important; 
}

/* Hide the API definition link */
a.link { 
    display: none !important; 
}

/* Hide the servers dropdown */
.servers { 
    display: none !important; 
}

/* Completely remove the servers section */
.servers, .servers-title {
    display: none !important;
}

/* Hide the API title text */
.swagger-ui .info .title {
    margin-bottom: 0px !important;
    display: none !important;
}

/* Add a logo above the API description */
.swagger-ui .info:before {
    content: "";
    display: block;
    background: url('./logo.png') no-repeat center;
    background-size: contain;
    width: 200px;
    height: 80px;
    margin-bottom: 0px;
}

/* Reduce space above and below the logo */
.swagger-ui .info {
    padding: 1px 0 !important; /* Adjust the padding */
    margin-bottom: 0px !important; /* Remove extra bottom margin */
}
