/* ════════════════════════════════════════
   motp_success accordion 樣式
════════════════════════════════════════ */

/* 統一標題樣式 */
.collapse-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.collapse-title:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* 箭頭圖示與旋轉動畫 */
.arrow-icon {
    transition: transform 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

/* 展開狀態時箭頭旋轉 180 度 */
.collapse-title[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

/* 圖片顯示優化 */
.success-logo-box img {
    max-width: 100%;
    height: auto;
}
