.status-overlay {
    display: none; /* 初始隱藏 */
    position: fixed; /* 固定在視口上 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明背景 */
    z-index: 9999; /* 確保在最上層 */
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
}

.status-message {
    color: white;
    font-size: 72px;
    text-align: center;
    text-decoration: none;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.close-button {
    display: none;
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.close-button:hover {
    background: #eee;
}