#ms-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
}
#ms-popup-container {
    background: #fff;
    max-width: 80%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}
#ms-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
#ms-popup-content {
    font-size: 16px;
}
.ms-hidden {
    display: none !important;
}


.ms-popup-pages-list {
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #ccc;
	padding: 10px;
	background: #f9f9f9;
}