.ccp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccp-popup-box {
    background: white;
    padding: 20px;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
}
.ccp-popup-box h2 {
    margin: 0 0 10px;
}
.ccp-popup-box .buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ccp-popup-box button {
    cursor: pointer;
}
