/* Minimal styling for the popup view */
.mvc-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.mvc-popup {
    background: #fff;
    max-width: 520px;
    width: calc(100% - 40px);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}
.mvc-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
}
.mvc-popup-title { margin-top: 0; }
.mvc-popup-trigger { margin: 12px 0; }