.cpt-notification {
    width: 100%;
    background: linear-gradient(90deg, #eef3ff, #f7faff);
    border-bottom: 1px solid #d6e0ff;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    color: #1a1a1a;
    position: relative;
    z-index: 999;
    animation: slideDown 0.4s ease-in-out;
}

.cpt-notification p {
    margin: 0;
    font-weight: 500;
}

/* Optional highlight text */
.cpt-notification strong {
    color: #2b59ff;
}

/* Smooth entrance */
@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}