html, body {
    height: 100%;
    margin: 0;
    background-color: #3b82f6;
    font-family: Arial, s
    ans-serif;
}

#map {
    width: 100vw;
    height: 100vh;
}

#zoomInfo {
    position: fixed;
    top: 50px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    z-index: 10000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    user-select: none;
    max-width: 200px;
    text-align: center;
}

#noGalleryModal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center; z-index: 9999;
}

#noGalleryModal .modal-content {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#closeModalBtn {
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #001f3f;
    color: white;
    border-radius: 4px;
}

#closeModalBtn:hover {
    background-color: #003366;
}

#homePageBtn {
    position: fixed;
    top: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px; cursor:
    pointer; z-index: 10000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    user-select: none;
    color: white;
    transition: background 0.3s ease;
}

#homePageBtn:hover {
    background: rgba(59, 130, 246, 1);
}

#zoomEU {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(59, 130, 246, 0.9); /* blue with opacity */
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer; z-index: 10000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    user-select: none;
    color: white;
    transition: background 0.3s ease;
}

#zoomEU:hover {
    background: rgba(59, 130, 246, 1);
}