.cci-route-media {
    width: 100%;
}

#cci-map,
#cci-panorama {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* ----------------------------------------
   POI Navigation Buttons
---------------------------------------- */

.cci-poi-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.cci-poi-nav button {
    flex: 1;
}

/* spacing između gumba */
.cci-poi-nav button + button {
    margin-left: 12px;
}

/* Hover & focus */
.cci-poi-nav button:hover:not(:disabled),
.cci-poi-nav button:focus-visible {
    background-color: #0073aa;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.25);
    transform: translateY(-1px);
}

/* Active (click) */
.cci-poi-nav button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 115, 170, 0.25);
}

/* Disabled state */
.cci-poi-nav button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

/* Mobile optimisation */
@media (max-width: 480px) {
    .cci-poi-nav button {
        font-size: 13px;
        padding: 12px;
    }
}

/* ----------------------------------------
   POI Indicator
---------------------------------------- */

.cci-poi-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.cci-poi-indicator span {
    min-width: 16px;
    text-align: center;
}

/* Drag btn on 360 – OFF */
.cci-pan-toggle svg {
    width: 25px;
    height: 25px;
    color: #a8a8a8; 
    opacity: 0.7;
    display: block;
}

/* Drag btn on 360 – ON */
.cci-pan-toggle.active svg {
    color: #0073aa;
    opacity: 1;
}


/* ----------------------------------------
 * Leaflet POI popup typography (title + description)
 * ---------------------------------------- */
.leaflet-popup-content {
    font-size: 12px;
    line-height: 1.45;
    color: #222;
}

/* Naslov */
.leaflet-popup-content strong {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 0px;
}

/* Opis (ACF <p>) */
.leaflet-popup-content p {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;  
}
