/* DVN Aannemingen - cookiebar */
#dvn-cookiebar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #114969;
    color: #ffffff;
    padding: 22px 25px;
    font-family: 'Poppins', Arial, sans-serif;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}
#dvn-cookiebar.dvn-visible {
    display: block;
}
#dvn-cookiebar .dvn-cookiebar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#dvn-cookiebar .dvn-cookiebar-text {
    flex: 1 1 500px;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}
#dvn-cookiebar .dvn-cookiebar-text a {
    color: #6fb6e8;
    text-decoration: underline;
}
#dvn-cookiebar .dvn-cookiebar-buttons {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
#dvn-cookiebar button {
    cursor: pointer;
    border-radius: 4px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    border: 2px solid #2e8aca;
    transition: all 0.2s ease;
}
#dvn-cookiebar-accept {
    background: #2e8aca;
    color: #ffffff;
}
#dvn-cookiebar-accept:hover {
    background: #256f9f;
    border-color: #256f9f;
}
#dvn-cookiebar-decline {
    background: transparent;
    color: #ffffff;
}
#dvn-cookiebar-decline:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 767px) {
    #dvn-cookiebar {
        padding: 18px 16px;
    }
    #dvn-cookiebar .dvn-cookiebar-buttons {
        width: 100%;
    }
    #dvn-cookiebar button {
        flex: 1 1 auto;
    }
}
