﻿/* 讓 SweetAlert2 彈窗維持原本預設寬度，但內容過長時可依文字寬度自動撐開，避免文字超出邊界 */
.swal2-popup {
    width: max-content;
    min-width: min(32em, 100%);
    max-width: min(60em, 90vw);
}

.swal2-title,
.swal2-content {
    overflow-wrap: break-word;
    word-break: break-word;
}
