@font-face{
    font-family: Sunny;
    src: url("../assets/Sunny Weather DEMO.otf");
}

@font-face{
    font-family: Roboto;
    src: url("../assets/Roboto-Regular.ttf");
}

html {
    height: 100%;
    margin: 0;
    overflow-y: hidden;
}

body {
    font-family: Roboto, sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    overflow-y: hidden;
}

.title {
    font-family: Sunny;
    background-color: #ce292a;
    color: white;
    text-align: center;
    /*padding: 10px;*/
    /*padding-bottom: 20px;*/
    font-size: 40px;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    z-index: 11;
}

#map {
    width: 100%;
    height: 100%;
}

.bouble {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 2px solid darkorange;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    width: 90%;
    height: 20%;
    box-sizing: border-box;
}

.close {
    text-align: center;
    color: #fff;
    background: #f00;
    cursor: pointer;
    font-weight: bold;
    padding: 5px;
}

.maplibregl-marker {
    cursor: pointer;
}

.marker_container > img {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center;
    stroke: #000;
    stroke-width: 1px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
