#ccb-overlay {
		width: 100%;
		height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff26;
    z-index: 999999;
}

#ccb-banner {
    padding: 24px;
    width: 90%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.ccb-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.ccb-buttons button {
    padding: .5em;
    flex: 1;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

#ccb-accept {
    background: #000;
    color: #fff;
}

#ccb-refuse {
    background: #eee;
    color: #000;
}

p,
.ccb-buttons button {
	font-family: 'PlusJakartaSans-Regular', sans-serif;
	font-size: .75rem;
	line-height: 1.35;
} /* Good ✅ */

@media (max-width: 640px) {
    .ccb-buttons {
        flex-direction: column;
    }
}