
/* Cookie Popup container */
.cookie-popup {
    position: fixed; /* Stays at the bottom of the viewport */
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); /* Centers the popup horizontally */
    width: 90%;
/*     max-width: 450px;
 */    background-color: #333;
    color: #fff;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex; /* Flexbox for aligning content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    z-index: 1000; /* Ensure it's on top of other content */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; /* Smooth transition effects */
}

/* Content inside the popup */
.cookie-content {
    text-align: center;
	display: flex;
}

.cookie-content p {
    margin: 10px 20px 15px 0;
}

.cookie-content a {
    color: #4CAF50; /* A contrasting color for the link */
    text-decoration: none;
    font-weight: bold;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* Buttons container */
.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

/* Base button styling */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

/* Accept button styling */
.btn-accept {
    background-color: #fe9802;
    color: #fff;
}

.btn-accept:hover {
    background-color: #45a049;
}

/* Decline button styling */
.btn-decline {
    background-color: #555;
    color: #fff;
}

.btn-decline:hover {
    background-color: #666;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .cookie-popup {
        bottom: 10px;
        width: 95%;
        padding: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

button#declineCookies {
    position: static;
}

button#acceptCookies {
    position: static;
}