.notification-prompt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

.notification-prompt-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.notification-prompt-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.notification-prompt-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.notification-prompt-header i {
    color: var(--primary-color);
    width: 1.5rem;
    height: 1.5rem;
}

.close-prompt {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #64748b;
}

.close-prompt:hover {
    color: #1e293b;
}

.notification-prompt p {
    color: #64748b;
    margin-bottom: 1rem;
}

.notification-prompt ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.notification-prompt ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.notification-prompt ul li::before {
    content: '•';
    color: var(--primary-color);
}

.notification-prompt-actions {
    display: flex;
    gap: 1rem;
}

.btn-allow,
.btn-later {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    flex: 1;
}

.btn-allow {
    background: var(--primary-color);
    color: white;
}

.btn-allow:hover {
    background: var(--primary-dark);
}

.btn-later {
    background: #f1f5f9;
    color: #1e293b;
}

.btn-later:hover {
    background: #e2e8f0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .notification-prompt {
        bottom: 0;
        right: 0;
        left: 0;
    }

    .notification-prompt-content {
        border-radius: 1rem 1rem 0 0;
        margin: 0 1rem;
    }

    .notification-prompt-actions {
        flex-direction: column;
    }
}