* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

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

#topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 60px;
    width: auto;
}

.menu-icon {
    font-weight: bold;
    cursor: pointer;
    color: #323795
}

#sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    #sidebar {
        width: 80%;
    }
}

#sidebar.active {
    right: 0;
}

#closeSidebar {
    background: none;
    border: none;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
}

.search-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.locations {
    list-style: none;
}

    .locations li {
        display: flex;
        align-items: center;
        padding: 15px 0;
        font-size: 15px;
        gap: 10px;
        border-bottom: 1px solid #eee;
    }

        .locations li img {
            height: 25px;
        }

#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none;
}

    #backdrop.active {
        display: block;
    }

img.loading {
    background: transparent url(../loading.gif) no-repeat scroll center center;
    min-height: 100px;
    min-width: 100px;
    padding: 10px;
}

.iw-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    min-width: 100px;
}