/* Denne CSS vil anvende Open Sans-skrifttypen globalt på alle elementer */
* {
    font-family: 'Open Sans', sans-serif;
}

.body2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: rgba(0, 0, 0, 0.5); /* Halvtransparent sort baggrund */
    position: fixed; /* Fast position for at dække hele vinduet */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* Sørg for at den er ovenpå andre elementer */
}

#consentBox2 {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#consentHeader2 {
    font-size: 25px;
    font-weight: 600;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.consentButton2,
.rejectButton2 {
    padding: 12px 30px;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.consentButton2 {
    background: #2a910b; /* Grønt for accept */
    margin-right: 10px;
}

.rejectButton2 {
    background: #f44336; /* Rød for afvisning */
}
