#JumpTo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding:10px;
}

.jump-label {
    font-size: 14px;
    color: #333;
}

.pill-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background-color: #D6E4F0;
    color: #2B5A8C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

    .pill-btn:hover {
        cursor: pointer;
        background-color: #C0D4E8;
        text-decoration: underline;
    }
.mapframe {
    display: flex;
    flex-direction: column;
    flex: 1; /* each takes equal share of 972px */
    padding: 15px;
    min-width: 0; /* prevents flex blowout */
    box-sizing: border-box;
}
.frametitle{
    font-weight:700;
    font-size:16px;
}
.imgcaption {
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word
}
.wallmapimg {
    width: 100%;
    height: auto;
}
.section-bar {
    display: flex;
    align-items: center;
    background-color: #E6F1FF;
    padding: 5px;
    margin:0px
}



.section-bar-title {
    font-weight: 700;
    font-size: 20px;
    color: #222;
    margin-right: 16px;
}

.section-bar-desc {
    font-size: 16px;
    color: #555;
}

.section-bar-wrapper {
    margin: 20px 0;
}

.back-to-top {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    margin-bottom: 4px;
}

    .back-to-top:hover {
        text-decoration: underline;
    }
/* Dark overlay behind the viewer */
#CartoViewerOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 19999;
}

#CartoViewerContainer {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 510px;
    height: 381px;
    background-color: #f7f7f7;
    z-index: 20000;
    border: 1px solid #888;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.imgcaption-list {
    list-style: disc;
    padding-left: 18px;
    margin-top: 8px;
    font-weight:500;
    font-size: 14px;
    line-height: 1.6;
}
.acretitle {
    color: #6082AF;
    font-size: 16px;
}
.maprow-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 0px 4px 0px;
    border-bottom: 1px solid #ccc;
    margin-left: 15px;
    margin-right: 15px;
}
.maprow-header-title {
    color: #01224B;
    font-size: 18px;
}

.maprow-header-subtitle {
    color: #01224B;
    font-size: 16px;
}
.scenario-h1 {
    color: #03234C;
    font-size: 50px;
    font-family: 'Segoe UI', Arial;
    font-weight: normal;
}
.gallery-contact-phone {
    font-size: 30px;
    font-family: 'Segoe UI', Arial;
    color: #053A7D;
    margin-top: 5px;
    font-weight: bold;
}
.CartoLink :hover{
    cursor:pointer;
}