.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color:white;
}

.consent-modal {
    background: blue;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    color: white;
}

.consent-button {
    background: white;
    color: blue;
    border: 2px solid blue;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}