/* 모달 중앙 정렬 CSS */
#user-character-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 50;
}

#user-character-modal.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
}