.cpc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(3px);
	display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.hidden { display: none; }

.cpc-modal {
    background: white;
    max-width: 600px;
    padding: 24px;
    border: 2px solid #4295af;
    text-align: left;
    position: relative;
    animation: effFadeIn 0.3s ease-out;
}
.cpc-modal-title-ok {
    color: #028199;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px #e0e0e0;
}

.cpc-modal-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.cpc-modal-btn-group {
    display: flex;
	gap: 10px;
    justify-content: center;
	margin: 0 auto
}

/* Close button (general) */
.cpc-modal-close {
    background: #9e9e9e;
    color: white !important;
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
	text-decoration: none !important
}
.cpc-modal-close:hover {
    background: #757575;
}

/* Primary button */
.cpc-modal-primary {
    background: #0495b1;
    color: white;
    border: none;
    padding: 10px 22px;
	text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}
.cpc-modal-primary:hover {
    background: #028199;
}

/* Secondary button */
.cpc-modal-secondary {
    color: #222 !important;
    border: 1px solid #dbdbdb;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer;
	text-decoration: none !important;
}
.cpc-modal-secondary:hover {
    background: whitesmoke;
	border-color: #0000;
}

/* Visual effects */
@keyframes effFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}