/* ================================================
   PINORAMA MODULE - FRONTEND STYLES
   ================================================ */

h1 {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}

#pinorama-single-map,
#pinorama-overview-map {
    width: 80%;
    height: 400px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pinorama-map-wrapper {
    width: 100%;
    text-align: center; /* Buttons unter der Karte zentrieren */
    margin-bottom: 30px; /* Abstand nach unten */
}

.backBtn,
.centerBtn {
    display: inline-block;
    padding: 10px 16px;
    margin-top: 10px;
    background-color: #0078A8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.1s;
}

.backBtn:hover,
.centerBtn:hover {
    background-color: #005a87;
}


/* Leaflet Popup Styles für Frontend */
.leaflet-popup-content {
    font-family: inherit;
    line-height: 1.5;
}

.leaflet-popup-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.leaflet-popup-content a {
    color: #0078A8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.leaflet-popup-content a:hover {
    color: #005a87;
    text-decoration: underline;
}
