body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#eta {
    text-align: center;
    padding: 10px;
    background-color: #191a1a;
    font-size: 90px; /* Increased font size */
    font-weight: bold; /* Optional: Makes the text bold for better visibility */
    color: white;
    overflow: hidden; /* Added to prevent content overflow */
}

#map {
    flex-grow: 1;
    height: 100%;
    width: auto;
}

.my-tooltip {
    background-color: #323432;
    color: black;
    font-weight: bold;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
    padding: 5px;
    border-radius: 2px;
    font-size: 30px;
}

