body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
#container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}
#map {
    width: 70%;
    height: 100%;
}
h2 {
    text-align: center;
    margin: 10px 0;
     font-size: 30px;
}
#tableContainer {
    width: 30%;
    height: 100vh;
    overflow-y: auto;
    background-color: white;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 19px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 1;
}
tr:hover {
    background-color: #ddd;
}