/* COOKIE ALERT  */

.cookie-container{
	background-color:var(--darkbluecolor);
}

.cookie-content{
	display: none;
    margin:auto;
	text-align: left;
	position: relative;
   	max-width:80rem;
	padding: 1rem 2rem;
    z-index: 9999; /* Ensure it's above other content */
	height: auto;
}

/* centralise buttons */
.cookie-content .cookie-btn-container {
	display: flex;
    flex-direction: column; /* Stack buttons on top of each other */
    align-items: center; /* Center align the buttons */
}