/* CSS Document */

/* The Overlay */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* The Box */
.modal-content {
	background-color: #fff;
	padding: 25px;
	border-radius: 12px;
	position: relative;
	max-width: 550px;
	width: 90%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	font-family: sans-serif;
}

/* The Close Button */
.close-button {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #666;
	line-height: 1;
}

.close-button:hover {
	color: #000;
}

/* The Image */
.modal-image {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 15px;
	margin-top:15px;
	display: block;
}

h2 { margin-top: 0; color: #333; }
p { color: #666; line-height: 1.5; }




/* BANNER */
.announcement-bar {
    background-color: #2990CB;
    width: 100%;
    min-height: 40px;
    padding: 5px 20px;
    box-sizing: border-box;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
    z-index: 1001; 
}

.announcement-link {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    display: block;
    width: 100%;
    /* Smooths out the hover effect */
    transition: text-decoration 0.2s ease-in-out;
}

/* hover state */
.announcement-link:hover {
    text-decoration: underline;
    color: white; /* Ensures it stays white */
}