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

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

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #fafafa;
}

.topbar {
    display: none !important;
}
.swagger-ui .info {
    margin: 20px 0;
}
.swagger-ui .info .url {
    display: none !important
}

#logo {
    width: 128px;
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Optional: Adjust spacing to the right of the logo */
}

.menu {
    display: flex;
    justify-content: start; /* Align menu items to the start */
    align-items: center; /* Center items vertically */
    background: #0D47A1; /* A Material Design purple */
    padding: 8px 16px; /* Adjust padding as needed to align the menu items */
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s;
}
.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.swagger-ui .info .title,
.swagger-ui .info h1,
.swagger-ui .info h2,
.swagger-ui .info h3,
.swagger-ui .info h4,
.swagger-ui .info h5,
.swagger-ui .opblock-tag   {
    font-family: 'Roboto', sans-serif;

}
