/*
.app-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.app-modal.is-open {
    display: block;
}

.app-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.app-modal__dialog {
    position: relative;
    max-width: 720px;
    width: calc(100% - 32px);
    margin: 60px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
}

.app-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.app-modal__title {
    font-size: 18px;
    margin: 0;
}

.app-modal__close {
    font-size: 22px;
    line-height: 1;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.app-modal__body {
    padding: 16px;
    max-height: calc(100vh - 160px);
    overflow: auto;
}

body.modal-open {
    overflow: hidden;
}
*/