 .location-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: white;
    border-radius: 5px;
    padding: 0 0 0 10px;
}
.sitemap-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: white;
    border-radius: 5px;
    padding: 0 10px;
    text-align: center;
}
.tmppoint-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: white;
    border-radius: 5px;
    padding: 0 10px 0 0;
}
.menu {
    display: flex;
    align-items: center;
}
.menu p {
    display: block;
    margin-right: 5px;
}
.menu button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 5px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.menu button:hover {
    background: #0056b3;
}
.options-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 20px;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-group label {
    flex: 1;
    margin: 0;
}
.filter-group select {
    margin-left: auto;
    width: 200px;
}
.search-container {
    position: absolute;
    z-index: 1000;
    background: white;
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    bottom: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 5px;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
}
.searchbar {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
input {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.no-underline,
.no-underline:link,
.no-underline:visited,
.no-underline:hover,
.no-underline:active {
    text-decoration: none;
}
