/* 自定義 SweetAlert2 樣式，使其符合香檳金風格 */
.swal2-popup {
    border-radius: 12px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.swal2-title {
    color: #252B37;
    font-weight: 600;
}

.swal2-html-container {
    color: #414651;
}

.swal2-confirm {
    background: linear-gradient(135deg, #B89B5E 0%, #D2B77D 100%) !important;
    border-radius: 20px !important;
    padding: 8px 24px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(184, 155, 94, 0.2) !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(184, 155, 94, 0.25) !important;
}

.swal2-cancel {
    background: #f1f3f5 !important;
    color: #495057 !important;
    border-radius: 20px !important;
    padding: 8px 24px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.1) !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    transform: translateY(-2px) !important;
    background: #e9ecef !important;
    box-shadow: 0 6px 16px rgba(73, 80, 87, 0.15) !important;
}

.swal2-icon.swal2-success {
    border-color: #34C38F !important;
    color: #34C38F !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: #34C38F !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(52, 195, 143, 0.3) !important;
}

.swal2-icon.swal2-error {
    border-color: #F46A6A !important;
    color: #F46A6A !important;
}

.swal2-icon.swal2-warning {
    border-color: #F1B44C !important;
    color: #F1B44C !important;
}

.swal2-icon.swal2-info {
    border-color: #50A5F1 !important;
    color: #50A5F1 !important;
}

.swal2-icon.swal2-question {
    border-color: #6D7FDB !important;
    color: #6D7FDB !important;
}

/* 自訂吐司提示樣式 */
.swal2-toast {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(10px);
}

.swal2-toast .swal2-title {
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* 動畫效果 */
.swal2-popup.swal2-toast.swal2-show {
    animation: swal2-toast-show 0.25s !important;
}

.swal2-popup.swal2-toast.swal2-hide {
    animation: swal2-toast-hide 0.15s !important;
} 