/* .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
} */

.ibus-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
    width: 90%;
    margin: 0 auto; /* 水平置中 */
}
.sidebar {
    width: 35%;
    background-color: #f0f8ff;
    padding: 1rem;
    border-radius: 10px;
}
.map-area {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.content-area {
    /* 防止地圖被直式時被壓扁 */
    min-height: 400px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: center;
}
th {
    background-color: #dff0ff;
}

/* CSS畫的舊 marker */
 /* .stop-icon {
    background: #ff7b00;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
} */

/* 看起來沒什麼用的css 保證leaflet預設樣式不會干擾我自訂的icon */
.custom-stop-icon {
    background: none;
    border: none;
}

.stop-icon {
    width: 100%;
    height: 100%;
    /* background-image: url('../../images/stopMark_b.svg'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 30px; /* 數字往下移多少 */
    /* padding-right: 3px; */

}

/* 指到時跳出的小框 */
.stop-tooltip {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* debug用 看圖片版marker實際邊框 */
.leaflet-marker-icon.debug-marker {
    border: 1px solid red !important;
    box-sizing: border-box;
    background-color: rgba(255, 0, 0, 0.1); /* 可選：淡紅底，更清楚範圍 */
}
