body, html {
    height: 100%;
    margin: 0;
    padding-bottom: 60px; /* Untuk memberi ruang bagi menu bawah */
    font-family: 'Roboto', sans-serif;
}

.main-container {
    display: flex;
    height: calc(100% - 60px); /* Sisakan ruang untuk menu bawah */
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid #eaebeb;
}

.bottom-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-align: center;
    font-size: 25px;
}

.bottom-menu a:hover {
    text-decoration: underline;
}

.custome-cards {
    position: fixed;
    bottom: 70px; /* Jarak dari bawah */
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px;
}

#map {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    height: calc(100vh - 60px); /* Sisakan ruang untuk menu bawah */
    visibility: visible;
    opacity: 1;
}

#map-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.scrollable-div {
    height: calc(84vh - 60px); /* Tinggi div dikurangi 60px dari bawah */
    overflow-y: scroll;
    scrollbar-width: none;
}

.scrollable-div::-webkit-scrollbar {
    display: none;
}

.scrollable-div2 {
    height: calc(50vh - 60px); /* Sama, dikurangi 60px dari bawah */
    overflow-y: scroll;
    scrollbar-width: none;
}

.scrollable-div2::-webkit-scrollbar {
    display: none;
}

.container-full {
    height: calc(100vh - 60px); /* Menyisakan 60px dari bawah */
    display: flex;
    flex-direction: column;
}

.mapz {
    height: 50vh; /* Bagian atas */
    background: lightgray;
}

.scrollable-div3 {
    flex: 1; /* Ambil sisa ruang dari container */
    overflow-y: auto;
    scrollbar-width: none;
}

.scrollable-div3::-webkit-scrollbar {
    display: none;
}