/* Cookiemelding (inc/consent.php). Beide knoppen bewust identiek: weigeren moet even makkelijk zijn als accepteren. */
.cv-consent {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    width: calc(100% - 40px);
    max-width: 420px;
    padding: 20px 22px;
    background: #fff;
    color: var(--color-text, #333);
    border: 1px solid var(--color-border, #e8e8e8);
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-xl, 0 25px 50px -12px rgba(0,0,0,.25));
    font-family: var(--font-body, sans-serif);
    font-size: .95rem;
    line-height: 1.5;
}
.cv-consent[hidden] { display: none; }
.cv-consent-title { margin: 0 0 6px; font-weight: 700; font-size: 1.05rem; color: var(--color-dark, #1a1a2e); }
.cv-consent-text { margin: 0 0 16px; }
.cv-consent-text a { color: var(--color-dark, #1a1a2e); text-decoration: underline; }
.cv-consent-actions { display: flex; gap: 10px; }
.cv-consent-btn {
    flex: 1 1 0;
    padding: 11px 14px;
    border: 2px solid var(--color-dark, #1a1a2e);
    border-radius: 50px;
    background: var(--color-dark, #1a1a2e);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.cv-consent-btn:hover { background: #fff; color: var(--color-dark, #1a1a2e); }
.cv-consent-btn:focus-visible { outline: 3px solid var(--color-primary, #ff6600); outline-offset: 2px; }
.footer-meta-nav .cv-consent-link { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: inherit; }
@media (max-width: 600px) {
    .cv-consent { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; padding: 16px; }
    .cv-consent-actions { flex-direction: column; }
    /* Arie-knop niet onder de melding laten verdwijnen: tijdelijk verbergen zolang de melding open staat. */
    .cv-consent-open .cv-arie-launcher { visibility: hidden; }
}
