#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    max-width: 500px;
}

#cookie-consent-banner h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

#cookie-consent-banner p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-buttons {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

#cookie-consent-banner .cookie-buttons button {
    padding: 10px 15px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 3px !important;
    font-weight: bold !important;
    background-image: none !important;
    box-shadow: none !important;
    text-transform: none !important;
}

#cookie-consent-banner button.btn-accept {
    background-color: #0073aa !important;
    color: #fff !important;
}

#cookie-consent-banner button.btn-accept:hover {
    background-color: #005177 !important;
}

#cookie-consent-banner button.btn-essential {
    background-color: #f0f0f1 !important;
    color: #333 !important;
}

#cookie-consent-banner button.btn-essential:hover {
    background-color: #dcdcde !important;
}

.cookie-links {
    font-size: 12px !important;
}

.cookie-links a {
    color: #666 !important;
    text-decoration: none !important;
}

.cookie-links a:hover {
    text-decoration: underline !important;
}

/* --- Layout Fixes: Sticky Footer --- */
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    margin: 0 !important;
}

/* Base content growth for standard pages */
#content {
    flex: 1 0 auto !important;
}

/* Special handling for index.html wrapper */
.zerif_full_site {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 0 auto !important;
    width: 100%;
}

/* Ensure content inside wrapper also grows */
.zerif_full_site>#content {
    flex: 1 0 auto !important;
}

/* Footer should sit at bottom and not shrink */
footer#footer {
    flex-shrink: 0 !important;
    margin-top: auto !important;
}