.wsp-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wsp-notification a {
    color: #fff;
    text-decoration: underline;
}

.wsp-notification__icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
}

.wsp-notification__text {
    flex: 1;
}

@media (max-width: 480px) {
    .wsp-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
