/* 모달 유틸 스타일 (readyni) - ModalUtil 스타일 보강 */

/* 모달 오버레이 컨테이너 */
[data-modal-index] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
}

/* 모달 내부 카드 */
[data-modal-index] > div:first-child {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    min-width: 320px !important;
    max-width: 400px !important;
    max-height: 90vh !important;
    overflow: auto !important;
    padding: 28px 24px 20px !important;
}

/* 모달 메시지 텍스트 */
[data-modal-index] > div:first-child > div:first-child {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

/* 모달 버튼 영역 */
[data-modal-index] > div:first-child > div:last-child {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* 모달 확인 버튼: readyni 민트색 */
.modal-confirm-btn {
    background: #2DD4A8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 32px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}
.modal-confirm-btn:hover {
    background: #1fae8e !important;
}

/* 모달 취소 버튼 */
.modal-cancel-btn {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 32px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}
.modal-cancel-btn:hover {
    background: #e2e8f0 !important;
}
