.cookie-consent {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000c;
    color: #e2ddb8;
    padding: 15px;
    text-align: center;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it appears above other content */
}

.cookie-consent button {
    background-color: #00a246;
    color: #e2ddb8;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
	transition: all 0.25s ease;
}

.cookie-consent button:hover {
    background-color: #8cc63f;
	color: #005c46;
	transition: all 0.25s ease;
}
