#ccp-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#ccp-popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#ccp-popup .ccp-buttons {
    margin-top: 15px;
}

#ccp-popup button {
    margin: 0 10px;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#ccp-confirm { background: #28a745; color: #fff; }
#ccp-cancel { background: #dc3545; color: #fff; }