/* import official swagger-ui.css from CDN */
@import url("https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css");

/* Custom CSS for LinkByCar Swagger UI */
.info .title:before {
    content: "";

    /* Add image */
    background-image: url("../images/logo_linkbycar.png");
    /* set background size (original image size: 4393 x 937)
    the height should be 1.5em and the width should be 1em * 4393 / 937
    */
    background-size: 7.5em 1.5em;
    /* set image size */
    height: 1.5em;
    width: 7.5em;

    /* margin-right: 0.3em; */
    margin-right: -0.3em;

    /* display as inline-block */
    display: inline-block;

    /* center vertically */
    vertical-align: middle;
}

#brands a {
    margin: 5px;
    display: inline-block;
}

.badge {
    background-color: red;
    color: white;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
}

/* END Custom CSS for LinkByCar Swagger UI */
