/* Fjern marger og padding fra body og html */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Forhindrer scrolling */
}

/* Gjør kartet fullskjerm */
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* =========================
   LOGO (responsiv)
   ========================= */

/* Logo-plassering */
#logo {
    position: absolute;
    top: 10px;
    left: 60px;         /* flytt vekk fra Leaflet zoom (+/-) */
    z-index: 1000;
    pointer-events: none; /* logo skal ikke stjele touch/pan på mobil */
}

/* Logo-størrelse: skalerer responsivt */
#logo img {
    width: clamp(70px, 12vw, 200px); /* min, responsiv, max */
    height: auto;
    opacity: 0.9; /* litt mindre visuelt trykk */
}

/* =========================
   LABELS FOR FARTØY
   ========================= */

/* ===== LABELS UTEN HVIT BAKGRUNN ===== */

.vessel-label,
.installation-label {
    background: transparent !important;
    border: none !important;
}

.vessel-label div,
.installation-label div {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;

    font-size: 12px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;

    /* lesbarhet uten boks */
    text-shadow:
        0 0 4px rgba(255,255,255,0.9),
        0 0 2px rgba(255,255,255,0.9);
}

/* =========================
   POPUP STYLING (Desktop)
   ========================= */

/* Standard popup styling */
.leaflet-popup-content-wrapper {
    width: auto !important;
    max-width: 800px;
    min-width: 600px;
    height: auto !important;
}

/* Popup-innhold */
.leaflet-popup-content {
    padding: 8px;
    font-size: 14px;
    margin: 0; /* Leaflet legger ofte på margin */
}

/* iFrame i popup */
.leaflet-popup-content iframe {
    width: 100% !important;
    height: 500px;
    border: none;
}

/* =========================
   MOBILTILPASNING
   ========================= */

@media (max-width: 600px) {

    /* Logo: mindre, litt mindre prangende */
    #logo {
        top: 8px;
        left: 55px; /* fortsatt vekk fra zoom */
    }

    #logo img {
        width: 85px;   /* override for mobil (du kan teste 70–100px) */
        opacity: 0.8;
    }

    /* Popup: bredde tilpasset skjerm */
    .leaflet-popup-content-wrapper {
        max-width: 92vw !important;
        min-width: 240px !important;
    }

    /* Popup-innhold: litt mindre tekst */
    .leaflet-popup-content {
        font-size: 12px !important;
        padding: 6px;
    }

    /* iFrame: lavere høyde på mobil */
    .leaflet-popup-content iframe {
        height: 220px !important;
    }
}
