body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

h1 {
    margin-top: 20px;
}

#container {
    display: flex;
    width: 100%;
    height: 100%;
}

#map {
    width: 70%; /* Adjust as needed */
    height: 80vh;
    border: 1px solid #ccc;
}

#info-box {
    width: 30%; /* Adjust as needed */
    height: 80vh;
    padding: 10px;
    border: 1px solid #ccc;
    overflow-y: auto;
}

#info-content {
    font-size: 16px;
}
