#cookie-notice {
    display: none; /* wordt door JS op 'flex' gezet */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2147483647;

    background: #f6f6f6;
    color: black;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 90vw;
    max-height: 80vh;
    text-align: center;
}

#cookie-notice p {
    margin: 0;
    font-weight: 700;
}

#cookie-notice button {
    background-color: #066dab;
    color: white;
    font-weight: 700;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

#cookie-notice button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    #cookie-notice {
        flex-direction: column;
        padding: 12px;
    }

    #cookie-notice p {
        margin-bottom: 10px;
    }

    #cookie-notice button {
        width: 100%;
    }
}
