.notification-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    width: calc(100% - 40px);
    animation: slideIn 0.5s ease-out;
}

.notification-banner {
    background-color: #343a40;
    color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.notification-content {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    flex: 1;
}

#enableNotifications {
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
}

#closeNotificationPrompt {
    background-color: transparent;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .notification-prompt {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .notification-banner {
        border-radius: 8px 8px 0 0;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notification-content {
        margin-bottom: 12px;
        width: 100%;
    }
    
    #enableNotifications {
        width: 100%;
        margin-right: 0;
        padding: 10px;
        font-size: 16px;
    }
    
    #closeNotificationPrompt {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}