/* cookiebanner-styles.css */

.ugm-cookiewall {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
}

.ugm-cookiewall-content,
.ugm-preferences-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
}

.ugm-preferences-content {
    display: none;
}

.ugm-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.ugm-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.ugm-accept-all {
    background-color: #4CAF50; /* Groen */
    color: white;
}

.ugm-show-preferences {
    background-color: #CCCCCC; /* Licht Grijs */
    color: white;
}

.ugm-save-preferences {
    background-color: #f44336; /* Rood */
    color: white;
}

.ugm-preference-item {
    margin-bottom: 10px;
}

/* Voeg hier eventueel meer aangepaste stijlen toe */