html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    touch-action: none;
}
.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
    will-change: transform;
    visibility: hidden;
}
img {
    max-width: none;
    user-select: none;
    pointer-events: none;
    display: block;
}
#mapContainer {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
    position: relative;
    background-color: #FFFFFF;
    /* background: #DCDDDD; */
}
#imgWrapper {
    will-change: transform;
    transform-origin: 0 0;
    position: absolute;
}
#mapImage {
    display: block;
    max-width: none;
    user-select: none;
    pointer-events: none;
}
.carIcon {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
#countdown {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 18px 20px;
    font-size: 30px;
    font-family: monospace;
    border-radius: 6px;
    z-index: 1001;
}

.arrival-time-box {
    position: absolute;
    z-index: 1000;
    transform: translate(-50%, 0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    padding: 0px 0px;
    box-sizing: border-box; 
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    color: black;
    text-align: center;
    font-size: 30px;
    font-weight: bold;  /*粗體*/
}