.spnw-hidden {
    display: none !important;
}

#spnw-bell-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    font-family: sans-serif;
}

#spnw-bell-btn {
    background: #007cba;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#spnw-bell-btn:hover {
    transform: scale(1.1);
}

#spnw-bell-btn svg {
    width: 24px;
    height: 24px;
}

#spnw-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 20px;
    animation: spnw-slide-up 0.3s ease-out;
}

@keyframes spnw-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#spnw-popup h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

#spnw-popup p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

#spnw-subscribe-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

#spnw-close-btn {
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
