﻿.auto-style1 {
    height: 32px; /* 設置高度為32px */
}

#popup {
    display: none; /* 預設不顯示 */
    position: fixed; /* 固定位置 */
    left: 50%; /* 左側50% */
    top: 50%; /* 頂部50% */
    transform: translate(-50%, -50%); /* 將視窗居中 */
    background-color: rgba(128, 128, 128, 0.8); /* 灰色背景，70%透明度 */
    border: none; /* 無外框線 */
    padding: 20px; /* 內部填充20px */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* 添加陰影 */
    width: 450px; /* 設置寬度為400px */
    height: 200px; /* 設置高度為200px */
    text-align: center; /* 文本置中 */
}

    #popup p {
        font-size: 36px; /* 設置字型大小為36px */
        margin: 20px 0; /* 設置上下邊距為20px */
    }

#operationTypeLable {
    margin-top: 30px; /* 文字往下調整10px */
    display: inline-block; /* 設置為行內塊元素 */
    vertical-align: middle; /* 垂直置中對齊 */
    font-weight: bold; /* 設置粗體 */
    color: red; /* 設置紅色字體顏色 */
}

#currentTimeLabel {
    margin-top: 30px; /* 文字往下調整10px */
    display: inline-block; /* 設置為行內塊元素 */
    vertical-align: middle; /* 垂直置中對齊 */
}

#popup button {
    margin: 5px; /* 按鈕間距為5px */
    display: inline-block; /* 設置按鈕為行內塊 */
}

#popup .button-container {
    text-align: center; /* 按鈕容器置中 */
}

.auto-style2 {
    height: 28px;
}
