.ze-notif-fab {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--theme-color);
    color: var(--theme-color-white);
    font-weight: 800;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    box-shadow: 0 0 0 0 var(--theme-color);
    cursor: pointer;
    z-index: 2;
    animation: ze-pulse 2s infinite;
}

@keyframes ze-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--theme-color);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(189, 152, 64, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(189, 152, 64, 0);
    }
}

.ze-notif-fab:hover {
    filter: brightness(1.08);
}

.ze-notif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ze-notif-popup {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    padding: 18px 20px 20px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.ze-notif-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 34px;
    cursor: pointer;
}

.ze-notif-content {
    max-height: 65vh;
    overflow: auto;
}

body.ze-notif-open {
    overflow: hidden;
}
