
#cdp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.cdp-popup {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 300px;
    width: 90%;
}

.cdp-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}

.cdp-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cdp-buttons .cdp-yes {
    background: #007cba;
    color: #fff;
}

.cdp-buttons .cdp-no {
    background: #ccc;
    color: #333;
}

.cdp-buttons button:hover {
    opacity: 0.9;
}
