.notify-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #007bff;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-button:hover {
    transform: scale(1.1);
    background: #0056b3;
}

.notify-button.subscribed {
    background: #28a745;
}

.notify-button.denied {
    background: #dc3545;
}

.notify-prompt {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 300px;
}

.notify-prompt h4 {
    margin: 0 0 10px 0;
}

.notify-prompt p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.notify-prompt .btn-group {
    display: flex;
    gap: 10px;
}

.notify-prompt .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.notify-prompt .btn-primary {
    background: #007bff;
    color: white;
}

.notify-prompt .btn-secondary {
    background: #6c757d;
    color: white;
}