#pgt-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pgt-consent-modal .pgt-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
}

#pgt-consent-modal h3 {
    margin-top: 0;
    font-size: 15px;
    text-align: center;
    color: #3d2d7c;
}

.pgt-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pgt-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.pgt-allow {
    background: #3d2d7c;
    color: white;
}

.pgt-deny {
    background: #b13d49;
    color: white;
}