.custom-modal-theme {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border: 1px solid var(--bs-border-color);
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.custom-modal-theme .modal-header,
.custom-modal-theme .modal-footer {
    border: none;
}

/* 테마별 모달 본문 색상 미세 조정 */
[data-bs-theme="light"] .custom-modal-theme .modal-body { color: #495057; }
[data-bs-theme="dark"] .custom-modal-theme .modal-body { color: #dee2e6; }

/* 닫기 버튼(btn-close) 다크모드 대응 */
[data-bs-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}