#modalContainer {
	background-color:transparent;
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:10000;
}

#alertBox {
	position:relative;
	width:300px;
	min-height:100px;
	/* Changed: margin-top from 50px to 150px for lower position on page */
	margin-top:150px;
	/* Changed: border from 2px solid #000 to 4px ridge #2C5F2D for decorative green border */
	border:4px ridge #2C5F2D;
	/* Changed: background-color from #F2F5F6 to #E8F5E9 for light green background */
	background-color:#E8F5E9;
}

#modalContainer > #alertBox {
	position:fixed;
}

#alertBox h1 {
	margin:0;
	/* Changed: font-family from verdana,arial to Georgia,serif for different font style */
	/* Changed: font-size increased from 0.9em to 1.1em for better readability */
	font:bold 1.1em Georgia,serif;
	/* Changed: background-color from #78919B to #2C5F2D for green theme */
	background-color:#2C5F2D;
	color:#FFF;
	border-bottom:1px solid #000;
	padding:2px 0 2px 5px;
	/* Removed: text-transform:uppercase to allow normal capitalization */
}

#alertBox p {
	font:0.7em verdana,arial;
	height:50px;
	padding-left:5px;
	margin-left:55px;
}

#alertBox #closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	/* Changed: padding increased from 3px to 7px for larger button */
	padding:7px;
	/* Changed: border from 1px solid #000 to 2px solid #1B3B1C for thicker green border */
	border:2px solid #1B3B1C;
	width:70px;
	/* Changed: font-family from verdana,arial to Georgia,serif to match title */
	font:0.7em Georgia,serif;
	/* Removed: text-transform:uppercase to allow normal capitalization */
	text-align:center;
	color:#FFF;
	/* Changed: background-color from #78919B to #2C5F2D to match title */
	background-color:#2C5F2D;
	text-decoration:none;
}

