*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    background:#101820;
    color:#ffffff;
}

#map{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

#loading{
    position:fixed;
    inset:0;
    background:#101820;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .4s;
}

#loading.hidden{
    opacity:0;
    pointer-events:none;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid rgba(255,255,255,.2);
    border-top:6px solid #00c3ff;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin-bottom:20px;
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

.hidden{
    display:none !important;
}

#locateButton{
    position:absolute;
    right:20px;
    bottom:20px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#111;
    font-weight:bold;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.35);
    transition:.25s;
}

#locateButton:hover{
    transform:scale(1.08);
}
.maplibregl-ctrl-attrib{
    font-size:10px !important;
    opacity:0.35 !important;
    max-width:180px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
}

.maplibregl-ctrl-attrib a{
    font-size:10px !important;
}

.maplibregl-ctrl-bottom-right{
    bottom:5px !important;
    right:5px !important;
}

.maplibregl-ctrl-attrib-button{
    display:none !important;
}
.maplibregl-ctrl-attrib{
    font-size:8px !important;
    line-height:12px !important;
    max-width:260px !important;
    padding:2px 5px !important;
    opacity:0.65 !important;
    transform:scale(0.55) !important;
    transform-origin:bottom right !important;
}

.maplibregl-ctrl-attrib a{
    font-size:8px !important;
    line-height:12px !important;
}

.maplibregl-ctrl-attrib-inner{
    font-size:8px !important;
    line-height:12px !important;
}

.maplibregl-ctrl-bottom-right{
    right:0 !important;
    bottom:0 !important;
}
