﻿/* ==========================================================================
   全站共用組件樣式 (shared-components.css)
   適用於：計畫須知、申請資格、申請流程等所有 info-modal
   ========================================================================== */

/* 1. 彈跳視窗外層黑底遮罩 */
.info-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .info-modal-overlay.active {
        display: flex;
    }

/* 2. 彈跳視窗白底內襯白框 */
.info-modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    box-sizing: border-box; /* ⭐ 建議加在共用層，保護所有 Modal 不破版 */
}

/* 3. 彈跳視窗頂部標題列 */
.info-modal-header {
    background-color: #fffebf;
    color: #333;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ebd8a0;
}

    .info-modal-header h3 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: bold;
    }

/* 4. 頂部關閉叉叉按鈕 */
.info-modal-close {
    background: none;
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

    .info-modal-close:hover {
        transform: scale(1.1);
        color: #dc3545;
    }

/* 5. 彈跳視窗內部滾動內容區 */
.info-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* 共用區塊卡片與警告區塊 */
.rules-card {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 12px;
}

.rules-card-title {
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.rules-warning-box {
    background-color: #fcf1f2;
    border-left: 5px solid #dc3545;
    color: #721c24;
    padding: 15px;
    margin-top: 15px;
    margin-left: 25px;
    border-radius: 4px;
    font-size: 0.95em;
    line-height: 1.6;
    /* ⭐ 關鍵修復：強制重置首行縮排，避免被上方的條列式清單感染 */
    text-indent: 0 !important;
    text-align: left; /* 確保文字靠左對齊 */
}

@media (max-width: 600px) {
    .info-modal-body {
        padding: 20px;
    }

    .rules-warning-box {
        margin-left: 0;
    }
}
