﻿/*
    前端「系統資料處理中」遮罩的樣式
*/

.custom-row {
    border: 1.5px dashed gray;
    margin-bottom: 5px;
    padding: 10px;
}

.visitor-label {
    font-size: 1rem;
    color: #333;
    background-color: #d5b5b5;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 背景半透明黑 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    background-color: rgba(50, 50, 50, 0.8); /* 深灰色半透明背景 */
    padding: 20px 30px; /* 內邊距增加美觀 */
    border-radius: 10px; /* 圓角設計 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 添加陰影效果 */
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
