.beast-nudges-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 18px 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
    border-top: 4px solid #0073aa; /* Blue accent bar */
}

.beast-nudges-box.active {
    display: block;
}

.beast-nudges-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.beast-nudges-box .nudge {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

