body {
    margin: 0;
}

#header {
    background-color: rgb(69, 230, 77);
    width: 100%;
    height: 100px;
    color: white;
    display: flex;

}

.column {
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    /* Căn giữa nội dung theo chiều dọc */
}

#Menu {
    flex: 1;
    display: flex;
    align-items: center;
    /* Căn giữa nội dung theo chiều dọc */
    justify-content: flex-end;
    /* Căn phải nội dung theo chiều ngang */
    font-size: 30px;
}

.resized-image {
    width: 64px;
    height: 64px;
}

.m {
    padding-right: 40px;
    cursor: pointer;

}

#Load {
    cursor: pointer;
    font-size: 30px;
}

.cuong_map {
    padding-left: 20px;
}

.no-underline {
    text-decoration: none;
}

#map {
    position: absolute;
    /* Đặt vị trí tuyệt đối để bản đồ không bị ảnh hưởng bởi header */
    top: 100px;
    /* Đẩy bản đồ xuống dưới header */
    left: 0;
    width: 100vw;
    /* Chiều rộng toàn màn hình */
    height: calc(100vh - 100px);
    /* Chiều cao trừ đi chiều cao của header */
}

.leaflet-bottom.leaflet-left {
    z-index: 1000;
}

.formBlock{
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    position: absolute;
    top: 160px;
    left: 10px;
    padding: 10px;
    z-index: 999;
    box-shadow: 0 1px 5px rgb(0,0,0,0.65);
    border-radius: 5px;
    width: 100%;
}
.input{
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 3px;
}
#form{
    padding: 0;
    margin: 0;
}

.leaflet-top .leaflet-control{
    margin-top:10px ;
}



@media screen and (max-width:830px) {
    #header {
        height: 50px;
    }

    #Load {
        font-size: 15px;
    }

    .cuong_map {
        padding-left: 5px;
    }

    #Menu {
        font-size: 15px;
    }

    .m {
        padding-right: 10px;
    }

    body {
        font-size: 7px;
    }

    .column {
        padding-left: 15px;
        padding-right: 15px;
    }

    .resized-image {
        width: 30px;
        height: 30px;
    }

    #body {
        padding: 10px;
    }

    #map {
        position: absolute;
        /* Đặt vị trí tuyệt đối để bản đồ không bị ảnh hưởng bởi header */
        top: 50px;
        /* Đẩy bản đồ xuống dưới header */
        left: 0;
        width: 100vw;
        /* Chiều rộng toàn màn hình */
        height: calc(100vh - 50px);
        /* Chiều cao trừ đi chiều cao của header */
    }

    .leaflet-bottom {
        bottom: 130px !important;
        top: auto !important;
    }

}