﻿/* * 頁面：Home/Index (語言選擇)
 * 用途：CSP 合規化樣式抽離
 */

/* 不需要包在 body {} 裡面，直接寫！ */

.lang-label {
    margin-top: 20px;
    text-align: center;
    font-size: 25px;
    color: #333;
}

.lang-container {
    margin-top: 10px;
    text-align: center;
    padding: 0 20px;
}

/* 語言按鈕樣式 */
.lang-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    height: 48px;
    margin: 12px auto;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    color: #fff;
    background-color: #D0021B;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .lang-btn:hover {
        background-color: #000000;
    }

/* [CSP Fix] */
.icon-system-title {
    margin-right: 10px;
    color: orangered;
}
