/* IwPopupManager - popupstyle.css */
/* 
/*  Author : Infowebs - Musiscore */
/*  Release : 0.1 */
/* 
/*  Release History */
/*  Module Release 	: 0.1 	 	29-06-2025	- 	Initial Alpha Release   */
/*  CSS Release		: 0.1.1		17-07-2025	- 	Initial Alpha Release   */
/*  CSS Release		: 0.4		01-07-2025	-	Remove top, left and right margin. Set by jquery as of version 0.4 */
/* ----------------------------------------------------------------   */


.myPopup {
	position: fixed;
	background-color: white;
    padding: 20px;
	margin-inline: auto; 
	width: fit-content;
	opacity: 0;
	min-width: 300px;
	max-width: 500px;
	border: 1px solid black;
	border-style: outset;
    border-radius: 10px;
    box-shadow: 10px 10px lightgrey;
	text-align: center;
	z-index:9999;
}
        
.myPopup-content {
	width: 80%;
	max-width: 500px;
	position: relative;
}

button {
	position: relative;
	padding: 10px 20px;
	cursor: pointer;
}