@media print {
    body * {
        visibility: hidden;
    }
    .printable, .printable * {
        visibility: visible;
        box-shadow: none !important; /* 移除陰影 */
        -webkit-box-shadow: none !important; /* 兼容 Webkit 瀏覽器 */
        -moz-box-shadow: none !important; /* 兼容 Firefox */
    }
    .printable-buttons, .printable-buttons * {
        display: none !important;
        visibility: hidden !important;
    }
    .printable {
        position: absolute;
        top: 0;
        left: 0;
        width: 210mm;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        box-shadow: none !important; /* 再次確保移除陰影 */
    }
    @page {
        size: A4;
        margin: 0;
    }
}

.max-w-lg{
	max-width: 56rem !important;
}