body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    height: 80vh; /* Adjusted height for the map and control panel */
}

#map {
    height: 100%;
    flex-grow: 1; /* Takes up the remaining space */
}

.controls {
    width: 300px;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden; /* Ensures no spillover from child elements */
    display: flex;
    flex-direction: column;
}

.scrolling-list {
    overflow-y: auto; /* Only vertical scroll */
    flex-grow: 1; /* Takes up remaining space */
    border: 1px solid #ccc;
    margin-top: 20px;
}

input[type="text"], button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box; /* Includes padding and border in the width */
}

label {
    display: block;
    margin-top: 20px;
}

.directions-panel {
    height: 100vh; /* Height for the driving directions */
    overflow-y: auto; /* Allows scrolling within the directions panel */
    background-color: #fff; /* Optional: Sets background color for visibility */
    padding: 10px;
    box-sizing: border-box;
}
