/* Allgemeines Layout */
body {
    margin: 0;
    padding: 0;
    display: flex;
}

/* Sidebar */
#sidebar {
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 10px;
    overflow-y: auto;
    border-right: 1px solid #ccc;
}

/* Karte */
#map {
    flex-grow: 1;
    height: 100vh;
}

/* Wegpunkte */
.waypoint {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: grab;
    justify-content: space-between;
}

/* Eingabefeld für Adressen */
.point-input {
    flex-grow: 1;
    padding: 5px;
}

/* "X"-Button zum Löschen */
.delete-button {
    margin-left: 10px;
    background: white;
    color: black;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 3px;
}

/* Popup-Menü für Rechtsklick */
.popup-menu {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    display: none;
    z-index: 1000;
}

.popup-menu div {
    padding: 5px;
    cursor: pointer;
}

.popup-menu div:hover {
    background: #007bff;
    color: white;
}

.suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    display: none;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    width: 100%;
}

.suggestions div {
    padding: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.suggestions div:hover {
    background: #007bff;
    color: white;
}
