/* 모달 스타일링 */
.modal-xl {
    max-width: 1200px;
}

.modal-body {
    font-size: 15px;
    line-height: 30px;
    color: rgb(121, 121, 121);
}

.modal-body img {
    width: 350px;
    height: 630px;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.modal-body p {
    text-align: justify;
}

.modal-body ul.list_box {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-body ul.list_box li {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAACCAYAAACk5p8HAAAAGklEQVQImWNgYGD4z8DAwMDIwMDwn4GBAQA') no-repeat 2px 8px;
    background-size: 5px 2px;
    margin: 0;
    padding: 0 0 8px 14px;
    text-align: justify;
    line-height: 30px;
    font-size: 15px;
}

.modal-body strong {
    font-weight: bold;
    color: #333;
}

/* 반응형 이미지 */
@media (max-width: 768px) {
    .modal-body img {
        width: 100%;
        height: auto;
        float: none;
        margin: 0 0 15px 0;
    }
}

/* 버튼 스타일 */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}