/* Overlay 스타일 */
	.css-modal-overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgb(175 175 175 / 75%);
	    display: none;
	    justify-content: center;
	    align-items: center;
	    z-index: 1050;
	}
.css-modal-overlay ul {
	display: unset !important;
	list-style: unset !important;
	list-style-type: decimal !important;
}
.css-modal-overlay li {
	list-style-type: decimal !important;
}
.css-modal-overlay h4 {
	margin-top: 1rem;
}

	/* 모달 내용 컨테이너 */
	.css-modal-content {
	    background-color: #fff;
	    border-radius: 10px;
	    padding: 20px;
	    width: 40vw;
	    text-align: center;
	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
	@media (max-width: 998px) {
	.css-modal-content {
	    width: 80vw;
	}
	}

	/* 헤더 스타일 */
	.css-modal-header {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    margin-bottom: 15px;
	    border-bottom: 1px solid #e9ecef;
	    padding-bottom: 10px;
	}

	.css-modal-title {
	    margin: 0;
	    font-size: 18px;
	    font-weight: bold;
	}

	.css-modal-close {
	    background: none;
	    border: none;
	    font-size: 20px;
	    font-weight: bold;
	    cursor: pointer;
	}

	.css-modal-close:hover {
	    color: #007bff;
	}

	/* 바디 스타일 */
	.css-modal-body {
	    text-align: left;
	    font-size: 14px;
	    line-height: 1.5;
		max-height: 70vh;
		overflow-y: auto;
	}