@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body, h1, h2, h3, h4, h5, h6, p, td, th, small, span, div, input, button, label, i, em, b, strong, cite, a,
textarea, select, option, ul, ol, li, blockquote, pre, code, aside, article, section, nav, figure, figcaption,
footer, header, main, summary, details, dt, dd, dl, mark, abbr {
    font-family: 'Montserrat' !important;
}

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

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

body {
    margin: 0;
    background: #fafafa;
}
.swagger-container .topbar{
    display: none !important;
}

.swagger-ui .topbar .download-url-wrapper {
    display: none !important;
}

.swagger-ui .topbar .wrapper {
    display: none !important;
}
.swagger-ui .info .title small {
    display: none !important;
}

.swagger-ui .info .url {
    display: none !important;
}
.swagger-ui section.models {
    display: none !important;
}
.api-header {
    background: linear-gradient(to right, #0f3a8e, #0c89d0);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.api-header-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.api-logo {
    height: 50px;
}

.api-title {
    color: white;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.api-portal-link {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to right, #0f3a8e, #0c89d0);
    padding: 8px 15px;
    border-radius: 5px;
}

    .api-portal-link:hover {
        background: rgba(255, 255, 255, 0.4);
    }


.footer {
    background: linear-gradient(to right, #0f3a8e, #0c89d0) !important;
    color: #fff;
    margin-top: 50px;
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #FFFFFF;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 5px 0;
    }

    .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #FFFFFF;
        }

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}


#go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}
    #go-to-top img {
        width: 100%;
        height: auto;
        cursor: pointer;
        border-radius: 50%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }

    #go-to-top.show {
        opacity: 1;
        visibility: visible;
    }


.swagger-ui .opblock.opblock-post .opblock-summary-method {
    background: linear-gradient(to right, #0f3a8e, #0c89d0) !important;
}

.swagger-ui .btn.authorize {
    border-color: #0f3a8e !important;
    color: #0f3a8e !important;
}