/* 모달 유틸 스타일 (i_hospital) - 페이지 모달과 클래스명 충돌 방지 */
.mu-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    min-width: 320px;
    max-width: 440px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
}
.modal-body {
    padding: 32px 24px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    word-break: keep-all;
}
.modal-footer {
    display: flex;
    border-top: 1px solid #eee;
}
.modal-footer button {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.modal-footer .btn-confirm {
    background: #5b9bd5;
    color: #fff;
}
.modal-footer .btn-confirm:hover {
    background: #4a8bc4;
}
.modal-footer .btn-cancel {
    background: #f5f5f5;
    color: #666;
}
.modal-footer .btn-cancel:hover {
    background: #e8e8e8;
}
