body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#sidebar {
    width: 400px; /* Increased width */
    background-color: #005A8B;
    color: #fff;
    padding: 15px;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}

#map {
    height: 100vh;
    margin-left: 400px; /* Adjusted to match the sidebar width */
}

#waypointsList {
    margin-top: 20px;
}

h1 {
    color: #F36D21;
}

/* Move the zoom controls to the bottom right */
.leaflet-control-zoom {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

/* Highlight the selected waypoint */
.selected-waypoint {
    background-color: #FE7900; /* RNLI Orange */
}
