/* footer.css */
.footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    justify-content: center; /* 系統名稱居中 */
    align-items: center;
    font-family: "Microsoft JhengHei", Arial, sans-serif;
    z-index: 1000;
    pointer-events: none; /* 防止遮擋點擊事件 */
}

.system-name {
    font-size: 0.9em;
    letter-spacing: 1px;
}

.version-number {
    position: absolute;
    right: 20px;
    font-size: 0.8em;
    opacity: 0.7;
}