/* ---------- agenda Model ---------- */
.agModal .modal-content {
    border-radius: 10px;
    font-size: 16px;
}

.agModal .modal-body {
    padding: 1.5rem 2.2rem;
}

.modal-body h5 {
    border: 1px solid #090b4d;
    color: #090b4d;
    padding: 10px 15px;
    margin-bottom: 1rem;
    font-size: 22px;
    text-align: center;
}

.modal-body ol {
    color: #0c1017;
    margin-bottom: 5px;
    line-height: 1.8;
    font-size: 18px;
}

.agModal .modal-header {
    border-bottom: none;
}

@media (min-width: 768px) {
    .agModal {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .agModal .modal-body {
        padding: .8rem;
    }
}

/* ========== 關掉按鈕 ========== */
.modal-header span {
    font-size: 30px;
}

.modal-header span::before {
    content: 'CLOSE';
    font-size: 18px;
    position: absolute;
    top: 23px;
    right: 40px;
    font-weight: 600;
    color: var(--second);
}