html, body {
    height: 100%;
}

.ios-safe-area {
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #3b82f6;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
}

.transport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important; /* 确保 3D 模型不会被 80x80 的图标容器裁剪 */
}

.three-transport-container {
    width: 200px;
    height: 200px;
    background: transparent;
    pointer-events: none;
}

.three-transport-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
