/* 📌 遮罩 (覆蓋整個畫面，防止操作) */
.loading-mask {
    position: fixed;
    top: 0;g
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* 確保在最上層 */
    display: none; /* 預設隱藏 */
}

/* 📌 Loading 圖示 */
.loading-spinner {
    text-align: center;
    color: white;
}