.map-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.map-container svg {
    width: 100%;
    height: auto;
    transform: scale(1.5);
    transform-origin: center;
}

.land {
    fill: #cccccc;
    stroke: white;
    stroke-width: 0.5;
    cursor: pointer;
    transition: fill 0.3s;
}

.land:hover {
    fill: #f39c12;
}

.land.active {
    fill: #3498db;
}

.branch-list {
    list-style: none;
    padding: 0;
}

.branch-item {
    margin-bottom: 20px;
}

.no-data {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    /* 設置粗體 */
    color: #6c757d;
    /* 使用淡黑色 */
    padding: 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#tooltip {
    position: fixed;
    /* 使用固定定位 */
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    /* 初始隱藏 */
    pointer-events: none;
    /* 防止滑鼠影響提示框 */
    z-index: 1000;
    /* 確保提示框顯示在最上層 */
    white-space: nowrap;
    /* 防止文字換行 */
}