.divider-endpoints {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 1.75em;
    font-weight: bold;
    padding: 20px; 
    color: #2e2e2e;
    cursor: default;
    pointer-events: none;
    margin-top: 15px;
}

.divider-endpoints::after {
    content: '';
    display: flex;
    margin-top: 15px;
    height: 4px;
    width: 100px;
    background-color: #002e40;
}

.site-footer {
    background-color: #002e40;
    color: white;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 50px;
    border-top: solid 1vh #AE9D72;
    flex-wrap: wrap;
}

.footer-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 5vw;
    padding-right: 5vw;
}

.image-size {
    width: clamp(100px, 15vw, 150px);
    margin: 0 5px;
}

.image-size-ukri {
    width: clamp(140px, 15vw, 200px);
    margin-top: 0 5px;
}

.external-link {
    color: #ffffff !important;
}

.external-link:hover {
    color: #bbc5c9 !important;
    cursor: pointer !important;
}

.opblock {
    border: none !important;
}

.opblock-summary-get {
    background-color: #002e40 !important;
}

.opblock-summary-description {
    color: white !important;
}

.opblock-summary-path {
    color: white !important;
}

.opblock-summary-method {
    background-color: #AE9D72 !important;
    color: white !important;
}

.opblock-control-arrow svg path {
    fill: white;
}

.btn.execute.opblock-control__btn {
    background-color: #002e40 !important;
    color: white !important;
    border-color: #AE9D72;
}

.version-stamp {
    background-color: #002e40 !important;
    color: white;
}

small:not(.version-stamp):has(pre.version) {
    background-color: #deecef !important;
    border: 1px solid black;
}

small:not(.version-stamp) pre.version {
    color:black!important;
}

.header-background {
    background-image: url('/static/imgs/wmm-map.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    max-height: 25vh;
    margin: 0;
    padding: 0;
    margin-top: -27px;
    width: 100%;
    overflow-x: hidden;
}

.API-title{
    position: absolute!important;
    left: 50%;
    transform: translateX(-50%);
    font-size:clamp(18px, 3vw, 26px);
    font-weight: 450;
}

.footer-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    margin-top: 5px;
}
.footer-container > div {
    display: flex;
    align-items: center;
}
.footer-container a {
    color: white;
    text-decoration: none;
    margin: 0 4px;
}
.separator {
    border-left: 1px solid white;
    height: 24px;
    margin: 0 15px;
}
.footer-container .link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.link-group a {
    white-space: nowrap;
}

.footer-link{
    color: white;
    padding: 10px 0;
}

/* Responsive styles */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
    }
    .separator {
        display: none!important;
    }
    .link-group {
        justify-content: center;
    }
}

/* THIS IS BECAUSE OF BUG IN SWAGGER UI */
.swagger-ui .operation-servers {
    display: none;
}