/* --- 行動支付頁面通用樣式 --- */
.mp-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
    color: #333;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

/* --- 內容區塊 --- */
.mp-section {
    margin-bottom: 30px;
    line-height: 1.8;
}

.mp-section h2 {
    font-size: 1.5em;
    color: #333;
    border-left: 5px solid #c2242d;
    padding-left: 10px;
    margin-bottom: 15px;
}

.mp-section ul, .mp-section ol {
    padding-left: 25px;
}
.mp-section li {
    margin-bottom: 10px;
}

.mp-section dl dt {
    font-weight: bold;
    color: #c2242d;
    margin-top: 15px;
}
.mp-section dl dd {
    margin-left: 0;
    padding-bottom: 10px;
}


/* --- 響應式表格 --- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}
thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.note {
    font-size: 0.9em;
    color: #777;
    text-align: right;
}

/* --- 按鈕樣式 --- */
.styled-button {
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 10px 20px;
    background-color: #c2242d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.styled-button:hover {
    background-color: #a01c23;
}

/* --- 安全提醒區塊 --- */
.security-notice {
    background-color: #fffaf0;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #f0ad4e;
}
.security-notice h2 {
    border-left-color: #f0ad4e;
}

.cta-section {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

/* RWD */
@media (max-width: 768px) {
    .page-title { font-size: 1.6em; }
    .mp-section h2 { font-size: 1.3em; }
}